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

body {
    background-color: #8a51fc;
}

.logo {
    width: 300px;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

main {
    background: #e5e5e5;
    width: 350px;
    margin: 0 auto 40px;
    border-radius: 15px;
    padding: 40px 24px 23px;

}

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

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

input {
    cursor: auto;
}

button {
    width: 100%;
    height: 48px;
    border: none;
    background: #772FD3;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 10px 10px 10px #b8bcbb;
}

button:hover {
    background-color: #37ad27;
    box-shadow: 5px 5px 15px #747c7b;
}

button:active{
    opacity: 0.7;
}

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;
}

.box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.currency{

    font-size: 14px;
    color: #777777;

}

.currency-value, .currency-value-to-convert{

    font-weight: 700;
    font-size: 20px;
    color: #555555;
}