/* ============================================================
   LOGIN PREMIUM — Clínica LUMINAN Estética Avançada
   ============================================================ */

/* Background com leve textura e cor da paleta */
body {
    background-color: #e7e6df;
    font-family: 'Inter', Arial, sans-serif;
    color: #282828;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    /* leve fade ao entrar */
    animation: fadeIn 0.8s ease;
}

/* Animação do body */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

/* =======================
   CARD DO LOGIN
   ======================= */
.form-signin {
    width: 360px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 10px 10px;
    border-radius: 16px;

    border: 1px solid rgba(180, 157, 130, 0.45);
    box-shadow:
        0 12px 45px rgba(0,0,0,0.10),
        0 5px 15px rgba(0,0,0,0.05);

    transition: all .35s ease;
}

/* efeito hover suave */
.form-signin:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 55px rgba(0,0,0,0.14),
        0 7px 18px rgba(0,0,0,0.05);
}

/* logo */
.logo {
    width: 88%;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-5px);
    animation: slideIn 0.6s ease forwards;
}

.mb-4 {
    margin-bottom: 0px !important; */
}
/* animação da logo */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* título */
.titulo {
    font-size: 17px;
    font-weight: 600;
    color: #814a2f;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =======================
   INPUTS MODERNOS
   ======================= */
input {
    border-radius: 12px !important;
    border: 1px solid #b49d82 !important;
    padding: 12px !important;
    font-size: 15px !important;
    transition: 0.25s;
    color: #282828;

    background: #ffffffcc;
    backdrop-filter: blur(2px);
}

/* efeito moderno ao focar */
input:focus {
    border-color: #814a2f !important;
    background: white;

    box-shadow:
        0px 0px 8px rgba(129, 74, 47, 0.35),
        0 0 0 3px rgba(129, 74, 47, 0.12) !important;
    transform: translateY(-1px);
}

/* =======================
   BOTÃO PREMIUM
   ======================= */
.btn-login {
    background: linear-gradient(135deg, #b49d82, #a38d75);
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px 0;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: 0.28s ease;
    letter-spacing: 0.5px;
    font-size: 15px;

    box-shadow:
        0 4px 10px rgba(180,157,130,0.35);
}

/* hover moderno */
.btn-login:hover {
    background: linear-gradient(135deg, #a38d75, #8f795f);
    box-shadow:
        0 6px 15px rgba(180,157,130,0.45);
    transform: translateY(-2px);
}

/* clique */
.btn-login:active {
    transform: translateY(0px);
}

/* =======================
   RODAPÉ
   ======================= */
.footer-text {
    margin-top: 20px;
    font-size: 13px;
    color: #28282899;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
}
