* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", serif;
}

body {
    background-image: url(../img/background-dinheiro.jpg);
    background-size: cover;
}

.img-logo {
    display: block;
    margin: 20px auto;
    width: 13.75rem;
}

main {
    width: 375px;
    border-radius: 20px;
    background: #F4F4F4;
    padding: 44px 24px 23px;
    margin: 0 auto 24px;
    box-shadow: 4px 4px 10px #000000;
}

label {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    

}

select, input {
    border-radius: 4px;
    border: 1px solid #BBB;
    background: #FFF;
    height: 48px;
    width: 100%;
    appearance: none;
    outline: none;
    margin-bottom: 24px;
    padding-left: 18px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
}
button {
    border-radius: 5px;
    background: #772FD3;
    height: 48px;
    width: 100%;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    border: none;
    margin-bottom: 36px;
    cursor: pointer;
}

button:hover {
    opacity: 75%;
}

button:active {
    opacity: 50%;
}

section {
    border-radius: 20px;
    border: 1px solid #772FD3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 13px;
}

.currency-convert {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
}

.converted-currency {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seta {
    margin: 15px 0;
}