/* ==================== LOG-IN.CSS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #f5f4f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* ===== VIDEO DE FONDO ===== */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.bg-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

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

.login-box {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
}

/* Logo */
.login-logo {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.login-logo-img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 4px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: center;
}

.subtitle {
    font-size: 13px;
    color: #aaa;
    text-align: center;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

/* Error */
.error-msg {
    background: #fff5f5;
    border-left: 3px solid #e24b4a;
    padding: 0.7rem 1rem;
    font-size: 13px;
    color: #a32d2d;
    margin-bottom: 1.2rem;
}

/* Formulario */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

.input-group label svg {
    flex-shrink: 0;
    color: #bbb;
}

.input-group input {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 0.7rem 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 0;
    transition: border-color 0.15s;
}

.input-group input:focus {
    border-color: #1a1a1a;
}

.input-group input::placeholder {
    color: #ccc;
}

.options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -4px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #777;
    cursor: pointer;
}

.remember input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

.forgot-password {
    font-size: 12px;
    color: #888;
    text-decoration: none;
}

.forgot-password:hover {
    color: #1a1a1a;
}

.btn-login {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    margin-top: 4px;
}

.btn-login:hover {
    background: #333;
}

.register-link {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    margin-top: 0.5rem;
}

.register-link a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    color: #1a1a1a;
}

.back-home {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 12px;
    color: #aaa;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.back-home:hover {
    color: #555;
}

/* Responsive */
@media (max-width: 500px) {
    .login-box {
        padding: 1.8rem 1.4rem;
    }
}

/* ===== GOOGLE BUTTON ===== */
.google-btn-wrap {
    margin-bottom: 1rem;

}



/* ===== SEPARADOR "o" ===== */
.separator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    color: #ccc;
    font-size: 12px;
    letter-spacing: 1px;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}