@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body{
    background-color: #2daf7d;
}

.logo{
    width: 300px;
    height: 300px;
    display: block;
    margin: 20px auto ;
}

main{
    background-color: white;
    width: 375px;
    border-radius: 20px;
    margin: 0 auto;
    padding: 44px 24px 23px;
    margin: 40px auto;
}

label{
    color: #777777;
    font-weight: 400;
    font-size: 14px;
}

select, input{
    background: #ffff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
    appearance: none; /* seta do select*/
    padding-left: 18px;
    font-weight: 700;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
}
button{
    background-color: #2daf7d;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: 48px;
    color: #ffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

button:hover{
    opacity: 0.8;
}

button:active{
    opacity: 0.6;
}

section{
    border: 1px solid #2daf7d;
    border-radius: 20px;
    margin-top: 36px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.arrow-img{
    margin: 15px 0;

}

.currency-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.currency{
    color: #777777;
    font-size: 14px;
}
.currency-value-from-convert, .currency-value-to-convert{
    color:#555555 ;
    font-weight: 700;
    font-size: 20px;
}