/* ===========================================================
   reset_password.css — Tema COMEVO UX/UI
   Paleta aplicada:
   - Fundo Primário: #024873
   - Intermediária: #0578A6
   - Área do Formulário: #A7E4F2
   - Detalhes: #04C4D9 e #F2A341
   =========================================================== */

/* ====== RESET GERAL ====== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #024873, #0578A6);
}

/* ====== CONTAINER CENTRAL ====== */
.reset-container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* ====== CAIXA PRINCIPAL ====== */
.reset-box {
    display: flex;
    width: 900px;
    height: 520px;
    background: linear-gradient(160deg, #A7E4F2 0%, #8fdbe5 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ====== LADO DO FORMULÁRIO ====== */
.reset-form-side {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #024873;
}

.reset-form-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #024873;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.reset-form-side p {
    color: #034E61;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* ====== CAMPOS E LABELS ====== */
.reset-form-side label {
    color: #024873;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    display: block;
}

.reset-form-side input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #04C4D9;
    border-radius: 10px;
    background-color: #f0fbfc;
    color: #022326;
    font-size: 1rem;
    margin-bottom: 1.6rem;
    transition: all 0.25s ease;
    box-shadow: 0 0 4px rgba(4, 196, 217, 0.2);
}

.reset-form-side input:focus {
    outline: none;
    border-color: #F2A341;
    box-shadow: 0 0 6px rgba(242, 163, 65, 0.4);
    background-color: #ffffff;
}

/* ====== BOTÃO ====== */
.reset-form-side button {
    width: 100%;
    padding: 0.95rem;
    font-size: 1.05rem;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: linear-gradient(90deg, #04C4D9, #0578A6, #F2A341);
    background-size: 250% 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(4, 196, 217, 0.3);
}

.reset-form-side button:hover {
    transform: scale(1.03);
    background-position: 100% 50%;
    box-shadow: 0 6px 14px rgba(242, 163, 65, 0.4);
}

/* ====== TEXTO DE AJUDA ====== */
.reset-form-side .help-text {
    color: #034E61;
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* ====== LADO DA IMAGEM ====== */
.reset-image-side {
    flex: 1;
    background: linear-gradient(
            rgba(2, 72, 115, 0.6),
            rgba(2, 72, 115, 0.6)
        ),
        url("https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=700&q=80");
    background-size: cover;
    background-position: center;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 900px) {
    .reset-box {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    .reset-image-side {
        height: 200px;
    }
}
