
* {
padding: 0;
margin: 0;
outline: none;
box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  /*
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    */

}

body {
  background-color: #8a51fc;
}

#logo {
  display: block;
  margin: 0 auto;
  width: 300px;
}

#caixa1 {
    display: block;
    width: 100vw;
    height: 100vh;
}

#caixa2 {
    display: block;
    margin: 0 auto 40px;
    width: 375px;
    background-color: #f4f4f4;
    border-radius: 20px;
    padding: 44px 24px 23px;
}


label {
    color: #777777;
    font-weight: 400;
    font-size: 14px;
}

select , input {
    background-color: white;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    height: 48px;
    width: 100%;
    margin-bottom: 24px;
    padding-left: 18px;
    font-size: 16px;
    font-weight: 700;
    color: #555555;
    cursor: pointer;
}


button {
    background-color: #772fd3;
    color: white;
    border: none;
    border-radius: 5px;
    height: 48px;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

section {

    border: 1px solid #772fd3;
    border-radius: 20px;
    padding: 20px;
    margin-top: 36px;
    
    display: flex;
    flex-direction: column;
    align-items: center;

}

.arrow {

    margin: 15px 0;
}

.currency-box {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}



.currency {

    color: #777777;
    font-size: 14px;
}


.currency-value {

    color: #555555;
    font-weight: 700;
    font-size: 20px;

}