* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.required {
    color: red;
}

/* TELA INICIAL */
#telaInicial {
    background-image: url("../images/background.png");
    background-color: #DADADA;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 1rem;
}

h3 {
    position: relative;
    font-weight: 600;
    font-size: 25px;
    color: #2B7273;
    margin-bottom: 15px;
}

h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: #2B7273;
}

/* ── CABEÇALHO ── */
.logo {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.logo img {
    width: 150px;
    height: auto;
}

/* ── CARDS COMPARTILHADOS ── */
.tela-header {
    text-align: left;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.tela-form {
    background: #F6F6F6;
    border-radius: 20px;
    padding: 2rem 2rem;
    max-width: 900px;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: none;
}

/* ── RÓTULO DE SEÇÃO ── */
.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #2B7273;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid #2B7273;
}

/* ── FORMULÁRIO ── */
.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    color: #4F545A;
    font-weight: 600;
    font-size: 12px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid #8A94A6;
    border-radius: 10px;
    overflow: hidden;
    align-items: stretch;
}

.input-icon {
    background: #FFFFFF;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8A94A6;
    min-width: 55px;
    position: relative;
    border-right: none;
}

.input-icon::after {
    content: '';
    position: absolute;
    right: 0;
    height: 80%;
    width: 3%;
    background-color: #8A94A6;
}

.input-wrapper input {
    flex: 1;
    padding: 8px 10px;
    border: none;
    background: transparent;
    color: #000000;
    font-size: 15px;
}

.input-wrapper input:focus {
    outline: none;
}

/* ── RODAPÉ DO CARD ── */
.tela-card {
    width: 100%;
    max-width: 900px;
}

.footer-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* ── BOTÃO CONTINUAR ── */
.btn-tipo-continuar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f1ae33;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.5;
    pointer-events: none;
    transition: background 0.15s, opacity 0.15s, transform 0.15s;
}

.btn-tipo-continuar.ativo {
    background: #f1ae33;
    color: #fff;
    opacity: 1;
    pointer-events: all;
}

/* .btn-tipo-continuar.ativo:hover {
    background: #52a828;
    transform: translateX(3px);
} */

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #FFF inset !important;
    box-shadow: 0 0 0 1000px #FFF inset !important;
    -webkit-text-fill-color: #000000 !important;
    transition: background-color 9999s ease-in-out 0s;
}