/* ============================================================
   ADMIN_LOGIN.CSS — Pantalla de acceso al panel de administración
   Patricia Alonso · patriciaalonso.es
   ============================================================ */

.admin-login-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.logo-pz.admin-login-logo {
    display: block;
    position: static;
}

.admin-login-logo img {
    height: 64px;
    width: auto;
}

.login-card {
    background: rgba(20, 20, 40, 0.92);
    border: 2px solid #7B5FE0;
    border-radius: 18px;
    padding: 50px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 30px rgba(123, 95, 224, 0.4), 0 0 60px rgba(145, 70, 255, 0.2);
    text-align: center;
}

.login-icono {
    font-size: 3rem;
    margin-bottom: 16px;
}

.login-titulo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #7B5FE0;
    text-shadow: 0 0 10px #7B5FE0, 0 0 20px #9146FF;
    margin-bottom: 8px;
}

.login-subtitulo {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #888;
    margin-bottom: 36px;
}

.campo-grupo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.campo-grupo label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #ccc;
}

.campo-grupo input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(123, 95, 224, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.campo-grupo input:focus {
    border-color: #7B5FE0;
    box-shadow: 0 0 8px rgba(123, 95, 224, 0.4);
}

.btn-entrar {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #7B5FE0, #9146FF);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 16px rgba(123, 95, 224, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(123, 95, 224, 0.7);
}

.btn-volver {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-volver:hover { color: #7B5FE0; }

.separador {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 95, 224, 0.3), transparent);
    margin: 20px 0;
}