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

body {
    min-height: 100vh;
    background: #020024;
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(9, 31, 121, 1) 48%, rgba(0, 94, 255, 1) 100%);
}

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

}

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

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

select, input{
    background: #ffffff;
    border: 1px solid #3a34b3;
    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;
    border-radius: 20px;
    text-align: center;
}

button{
    background: #3a34b3;
    border-radius: 5px;
    width: 100%;
    border: none;
    height: 48px;
    color:#ffffff;
    font-weight:700 ;
    font-size: 18px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}


button:hover{
    opacity: 0.8;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px) ;
}

button:active{
    opacity: 0.6;
}

section{
    border: 1px solid #3a34b3;
    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;

}

