﻿:root {
    --blue-main: #1f86e5;
    --blue-hover: #166fbe;
    --border-default: #cfd8e3;
    --text-muted: #8a94a6;
}

/* ===============================
   BASE AUTH (LOGIN + RESET)
================================ */

body {
    background-color: #D2D6DE;
    font-family: Arial, Helvetica, sans-serif;
}

/* Card */
.auth-box {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,.12);
    padding: 28px 30px;
    width: 420px;
    margin: auto;
    margin-top: 8%;
    text-align: center;
}

/* Título */
.auth-title {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
}

/* Texto auxiliar */
.auth-text {
    margin-bottom: 20px;
    font-weight: 600;
    color: #555;
}

/* ===============================
   GRUPO INPUT
================================ */

/* INPUT */
.redef-input {
    border: none;
    border-color: #3C8DBC;
    outline: none;
    flex: 1;
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
    background: transparent;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin: 16px 0;
    border: 2px solid #d0d5dd; /* cinza padrão */
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

/* INPUT */
.auth-input {
    border: none;
    border-color: #3C8DBC;
    outline: none;
    flex: 1;
    height: 44px;
    padding: 10px 12px;
    font-size: 14px;
    background: transparent;
}


/* ÍCONE */
.auth-icon {
    width: 44px;
    text-align: center;
    color: #98a2b3;
    cursor: pointer;
    transition: color 0.2s ease;
}

    /* HOVER NO ÍCONE */
    .auth-icon:hover {
        color: #3C8DBC;
        border-radius: 0 8px 8px 0;
        color: #0d6efd;
    }

/* ===== FOCO REAL (somente quando clicar) ===== */
.auth-input-group:focus-within {
    border-color: #3C8DBC;
}

    /* ÍCONE NO FOCO */
    .auth-input-group:focus-within .auth-icon {
        color: #3C8DBC;
    }

/* PLACEHOLDER */
.auth-input::placeholder {
    color: #98a2b3;
}

/* REMOVE QUALQUER FOCO VISUAL INDEVIDO */
.auth-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* ===============================
   BOTÃO
================================ */

.auth-btn {
    height: 44px;
    border-radius: 6px;
    font-size: 16px;
    background-color: #3C8DBC;
    border: none;
    color: #fff;
    width: 100%;
    margin-top: 16px;
}

    .auth-btn:hover {
        background-color: #367FA9;
    }

/* ===============================
   LINKS
================================ */

.auth-links {
    margin-top: 18px;
    font-size: 13px;
    display: block;
    text-align: center;
    color: #367FA9;
    text-decoration: none;
    transition: color .2s ease;
}

    .auth-links a {
        color: #3C8DBC;
        text-decoration: none;
        font-weight: 600;
    }

        .auth-links a:hover {
            text-decoration: none;
            color: #2e3e46;
        }

/* ===============================
   ALERTA SUCESSO
================================ */

.auth-success {
    background-color: #e9f7ef;
    border: 1px solid #b7e4c7;
    color: #2d6a4f;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .auth-success i {
        font-size: 18px;
    }



/* ===============================
   ALERTA Sessão Expirada
================================ */

.auth-sessao-expirada {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    justify-items: center;
    align-items: center;
    gap: 25px;
}

    .auth-sessao-expirada i {
        font-size: 25px;
        padding: 8px;
    }

    .auth-sessao-expirada span {
    }

.support-box {
    margin-top: 20px;
    padding-top: 15px;
    color: #555;
}
