* {
  font-family: 'Roboto', sans-serif;
  padding: 0;
  margin: 0;
  outline: none;
}

body{
    background-color: #2C2F47;
}

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

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

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

select,input{
    background: #ffffff;
    border:1px solid #bbbbbb;
    border-radius:4px;
    height: 48px;
    width: 100%;
    margin-bottom: 24px;
    appearance: none;
    padding: left 18px;
    font-weight: 700;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
}

button{
    background: #5865F2;
    border-radius: 5px;
    width: 100%;
    border: none;
    height: 48px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
}


button:hover{
    opacity: 0.8;
}

button:active{
    opacity: 0.6;
}

footer { 
    color: #777;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-top: 15px;
    transition: color 0.3s; /* suaviza a mudança de cor */
}

footer:hover {
    color: #111; /* cor mais escura quando passar o mouse */
}




section{
    border:1px solid #772fd3 ;
   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, .currency-value-to-convert{
    color: #555555;
    font-weight: 700;
    font-size: 20px;
}

.currency-img{
    width: 44px; /* largura fixa */
    height: 44px; /* altura fixa */
    border-radius: 50%; /* deixa redonda */
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25); /* sombra igual ao Figma */
    object-fit: cover; /* impede deformar */
    display: block; /* remove espaçamento estranho */
    margin: 10px auto; /* centraliza */
     /* dá fundo pra sombra aparecer bem */
}

@media screen and (max-width: 435px) {

.logo{
    width: 200px;
    display: block;
    margin: 20px auto
}
 main{
width: auto;
    }
}






















