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

body {
    background-color: #8a51fc;
}

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

}

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

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

select,
input {
    border-radius: 4px;
    border: 1px solid #BBBBBB;
    background: #FFFFFF;
    height: 48px;
    width: 100%;
    margin-bottom: 24px;
    padding-left: 18px;
    font-weight: 700;
    font-size: 16px;
    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.7;
}

button:active {
    opacity: 0.5;
}

section {
    border-radius: 20px;
    border: 1px solid #772FD3;
    margin-top: 37px;
    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: 5px;
}

.currency {
    color: #777777;
    font-size: 14px;
}

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