@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    outline-color: #76C851;

}



body {
    background-color: #8A50FC;
}

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

main {
    width: 300px;
    border-radius: 20px;
    background-color: azure;
    margin: 0 auto 40px;
    padding: 20px 24px 23px;
}

label {

    color: #777777;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

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

input {
    cursor: auto;
}

button {
    color: #FFFFFF;
    background-color: #772FD3;
    width: 100%;
    height: 38px;
    border-radius: 5px;
    border: none;
    line-height: 18px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.3;
}

section {
    border: 2px #772FD3 solid;
    border-radius: 20px;
    margin-top: 20px;
    padding: 12px;
    display: flex;

    align-items: center;
    flex-direction: column;
}

.arrow-img {
    margin: 5px;
}

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

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

}

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