﻿.calculadora-background {
    background: #030617;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.calculadora-selecao-background {
    background-color: #0D0F1E;
    overflow: hidden;
}

.calculadora-input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 30px;
    padding: 0px 20px 0px 20px;
}

.calculadora-input-group label {
    font-size: 16px;
    font-weight: bold;
    color: #030617;
    margin-bottom: 5px;
}

.input-with-combobox {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.calculadora-input {
    background-color: #D1D1D1;
    width: 100%;
    height: 45px;
    border-radius: 20px;
    padding-left: 15px;
}

.calculadora-combobox {
    width: 120px;
    height: 45px;
    border-radius: 20px;
    padding-left: 10px;
    background: #030617;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}


.calculadora-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 0px 20px 0px 20px;
}

.calculadora-btn-calcular, .calculadora-btn-limpar {
    width: 182px;
    height: 45px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.calculadora-btn-calcular {
    background: #0C0F1E;
    color: white;
}

.calculadora-btn-limpar {
    background: #1F2649;
    color: white;
}

.calculadora-resultado {
    background: #FFF;
    text-align: center;
    border-radius: 15px;
    padding: 10px 20px 0px 20px;
    margin-top: 15px;
    width: 100%;
}

.calculadoras-voltar-button {
    background: #1F2649;
    width: 182px;
    height: 45px;
    border-radius: 20px;
    padding: 12px;
    font-size: 14px;
    cursor: pointer;
    color: #4C5687;
    font-weight: bold;
    align-content: end;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0px 20px 0px 20px;
}
