/* ============================================
   NATILLERA DIGITAL · Login Page Styles
   ============================================ */

body {
    background: linear-gradient(135deg, #f9f8f6 0%, #f5f0e8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.login-container {
    background-color: #ffffff;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(26, 43, 74, 0.15);
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo .logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    font-family: inherit;
    text-shadow: none;
    letter-spacing: normal;
}

.login-logo .logo-text span {
    color: var(--gold);
}

.logo-subtitle {
    font-size: 12px;
    color: #5a5450;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.login-title {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.login-subtitle {
    font-size: 14px;
    color: #5a5450;
    text-align: center;
    margin-bottom: 40px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    padding: 0;
}

.remember-me label {
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.forgot-password {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover { color: #a68932; }

.login-button {
    background-color: var(--navy);
    color: #ffffff;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 43, 74, 0.15);
    width: 100%;
}

.login-button:hover {
    background-color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 43, 74, 0.25);
}

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

.divider {
    text-align: center;
    margin: 30px 0;
    font-size: 12px;
    color: #b8b3aa;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e8e6e1;
}

.divider span {
    background-color: #ffffff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.signup-section { text-align: center; }

.signup-text {
    font-size: 13px;
    color: #5a5450;
}

.signup-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover { color: #a68932; }

.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8e6e1;
}

.back-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover { color: var(--gold); }

@media (max-width: 480px) {
    .login-container { padding: 40px 25px; }
    .login-title { font-size: 20px; }
    .login-logo { margin-bottom: 30px; }
    .login-logo .logo-text { font-size: 24px; }
}
