/**
 * Estilos específicos para la página de login - We Are App
 */

body.login-page {
    background: linear-gradient(135deg, var(--we-azul) 0%, #001a3d 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(179, 245, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

body.login-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 127, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, var(--we-azul) 0%, #004080 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.login-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--we-blanco);
    border-radius: 50% 50% 0 0;
}

.login-header .logo-container {
    background: white;
    border-radius: 16px;
    padding: 15px 25px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.login-header h1 {
    color: var(--we-blanco);
    font-weight: 800;
    font-size: 2.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-header .tagline {
    color: var(--we-verde);
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

.login-body {
    padding: 50px 40px 40px;
}

.login-body .form-label {
    color: var(--we-azul);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.login-body .form-control {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-body .form-control:focus {
    border-color: var(--we-naranja);
    box-shadow: 0 0 0 4px rgba(255, 127, 0, 0.15);
}

.login-body .input-group-text {
    background: var(--we-azul);
    border: none;
    border-radius: 12px 0 0 12px;
    color: var(--we-blanco);
    padding: 0 16px;
}

.login-body .input-group .form-control {
    border-radius: 0 12px 12px 0;
}

.btn-login {
    background: linear-gradient(135deg, var(--we-naranja) 0%, #e66a00 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--we-blanco);
    width: 100%;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.4);
    background: linear-gradient(135deg, #ff9933 0%, var(--we-naranja) 100%);
}

.btn-login:active {
    transform: translateY(0);
}

.login-body .alert-danger {
    background: #fff5f5;
    border: none;
    border-left: 4px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
}

.brand-colors {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.brand-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.footer-text {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

