
* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #3eb707;
}

.logo {
    width: 200px;
    display: block;
    margin: 20px auto;
    border-radius: 23px;
}

main {
    width: 350px;
    background: #c386ab;
    border-radius: 20px;
    margin: 0 auto 50px;
    padding: 40px  23px 23px;
}

label {
    color: #101010;
    font-weight: 400;
    font-size: 14px;
}

select, input {
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 23px;
    height: 50px;
    width: 100%;
    margin-bottom: 23px;
    appearance: nome;
    padding-left: 18px;
    font-weight: 700;
    font-size: 18px;
    color: #555555;   
    cursor: pointer; 
}

button {
    background: #772FD3;
    border-radius: 23px;
    width: 100%;
    border: none;
    height: 48px;
    color: #ffffff;
    font-weight:700;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

section {
    border: 1px solid #772FD3;
    border-radius: 20px;
    margin-top: 36px;
    padding: 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.brasil {
    width: 120px;
}

.arrow-img {
    margin: 15px 0;
}

.currency-img {
    width: 100px;
}

.currency-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.currency {
    color: #e11616;
    font-size: 14px;
}

.currency-value, .currency-value-to-convert {
    color: #e11616;
    font-weight: 700;
    font-size: 20px;
}
