﻿/* ========================================
   SEESIME - Autenticación
   Tema: Verde Institucional + Naranja
   ======================================== */

:root {
    --auth-dark: #1b4d3e;
    --auth-accent: #ea580c;
    --auth-light: #f4f7f6;
    --auth-border: rgba(27, 77, 62, 0.12);
    --auth-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Hero Section */
.auth-hero {
    background: linear-gradient(135deg, var(--auth-dark) 0%, #256652 100%);
    color: #fff;
}

.auth-badge {
    display: inline-block;
    background: rgba(234, 88, 12, 0.2);
    color: var(--auth-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(234, 88, 12, 0.3);
}

    .auth-badge.bg-seesime-success {
        background: rgba(16, 185, 129, 0.2);
        color: #10b981;
        border-color: rgba(16, 185, 129, 0.3);
    }

    .auth-badge.bg-seesime-warning {
        background: rgba(245, 158, 11, 0.2);
        color: #f59e0b;
        border-color: rgba(245, 158, 11, 0.3);
    }

.auth-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--auth-accent);
    margin-top: 1.5rem;
}

/* Formulario */
.auth-form {
    border-radius: 12px;
    overflow: hidden;
}

    .auth-form .form-label {
        font-weight: 500;
        color: var(--auth-dark);
        font-size: 0.9rem;
    }

    .auth-form .form-control:focus {
        border-color: var(--auth-accent);
        box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.25);
    }

/* Botones */
.btn-auth-primary {
    background: linear-gradient(135deg, var(--auth-dark), #256652);
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-auth-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(27, 77, 62, 0.3);
        color: #fff;
    }

.btn-auth-outline {
    background: transparent;
    border: 2px solid var(--auth-dark);
    color: var(--auth-dark);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-auth-outline:hover {
        background: var(--auth-dark);
        color: #fff;
    }

.text-seesime-primary {
    color: var(--auth-dark) !important;
    font-weight: 500;
}

.text-seesime-success {
    color: #10b981 !important;
}

.text-seesime-warning {
    color: #f59e0b !important;
}

/* Responsive */
@media (max-width: 767px) {
    .auth-form .card-body {
        padding: 1.5rem !important;
    }
}
