@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


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

body{
    background-color:#8A51FC;
}
.logo{
    width: 300px;
    margin: 20px auto;
    display: block;
}

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

}

label{
    color: #777;
    font-weight: 700;
    font-size: 14px;
}

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

button{
    border-radius: 5px;
    background: #772FD3;
    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-radius: 20px;
    border: 1px solid #772FD3;
    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: #777;
    font-size: 14px;
}

.currency-value, .currency-value-to-convert{
    font-size: 20px;
    color: #555;
    font-weight: 700;
}