@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#container{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.618);
}

#calculator{
    background-color: #262626;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.323);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 200px;
}

#testa{
    display: flex;
    flex-direction: row;
    position: relative;
}

#testa2{
    display: flex;
    flex-direction: row;
    position: relative;
}

#testa3{
    display: flex;
    flex-direction: row;
    position: relative;
}

#testa4{
    display: flex;
    flex-direction: row;
    position: relative;
}

#coin{
    max-width: 30ox;
    max-height: 30px;
    width: auto;
    height: auto;
    position: relative;
    right: -20px;
}

#calculator h2 {
    font-size: 20px;
    position: relative;
    text-align: center;
    color: #eee898;
    font-weight: 700;
}

a{
    text-decoration: none;
    border: 1px  rgb(188, 185, 185);
    border-style: solid;
    padding: 1px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    color: black;
    font-weight: 500;
    background-color: rgba(245, 245, 245, 0.888);
} 

#main1{
    background-color: transparent;
    color: #c8ced6;
}

#gas2{
    background-color: transparent;
    color: #c8ced6;
}

#advanced3{
    background-color: transparent;
    color: #c8ced6;
}

#checks4{
    background-color: transparent;
    color: #c8ced6;
}

#abas{
    display: flex;
    flex-direction: row;
    gap: 0px;
}

#linha{
    height: 5px;
    color: rgb(188, 185, 185);
    background-color:rgb(188, 185, 185);
    position: relative;
    top: -10px;
}

#input_box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.input_field {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.input_field label {
    font-size: 15px;
    color: #c8ced6;
    font-weight: 500;
    width: 50%;
}

.input_field input{
    background-color: transparent;
    border: 1px grey;
    border-style: solid;
    color: #fff;
    text-align: center;
    font-size: 15px;
    padding: 2px;
    width: 50%;
}

.input_field input :focus{
    outline: none;
}

#output_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 8px;
    border: 2px #eee898;
    border-style: solid;
    border-radius: 8px;
}

.output_field {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 1px;
}

.output_field label {
    font-size: 12px;
    color: #eee898;
    font-weight: 500;
    width: 50%;
    text-align: center;
}

#calculate{
    background: rgb(88, 88, 88);
    border: none;
    padding: 5px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-weight: bold;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

#email{
    color: white;
    font-size: 10px;
    font-style: normal;
    font-family: 'Times New Roman', Times, serif;
}

#opcoes{
    display: flex;
    flex-direction: column;
    font-size: 15px;
    text-align: left;
    color: rgb(188, 185, 185);
    padding-left: 20px;
    gap: 10px;  
}

#opcao{
    display: flex;
    flex-direction: row;
}

