
/* Login Page Styles */
.login-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    min-height: 100vh;
}

/* Login Header */
.login-header {
    background: linear-gradient(135deg, #1a4a4a 0%, #2d5a5a 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.login-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="login-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c8a882" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23login-pattern)"/></svg>');
    pointer-events: none;
}
.login-content .container {
    max-width: 1200px;
}
.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #c8a882;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: white;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.login-subtitle {
    font-size: 1.1rem;
    color: #b8d4d4;
    margin: 0;
    opacity: 0.9;
}

/* Login Content */
.login-content {
    padding: 60px 0;
}

.login-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Login Form */
.login-form-section {
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 450px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #1a4a4a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a4a4a;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #c8a882;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #c8a882;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.password-toggle:hover {
    color: #c8a882;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-label input:checked + .checkmark {
    background: #c8a882;
    border-color: #c8a882;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: #c8a882;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: #1a4a4a;
}

.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a4a4a 0%, #c8a882 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 74, 74, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.form-footer p {
    color: #666;
    margin: 0;
}

.form-footer a {
    color: #c8a882;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.form-footer a:hover {
    color: #1a4a4a;
}

/* Benefits Section */
.benefits-section {
    padding-left: 20px;
}

.benefits-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.benefits-card h3 {
    color: #1a4a4a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
}

.benefit-item:hover {
    background: #f8f9fa;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c8a882, #b8976f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #1a4a4a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.guest-option {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    border: 1px solid #c8a882;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.guest-option h4 {
    color: #1a4a4a;
    margin-bottom: 10px;
}

.guest-option p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.guest-btn {
    background: transparent;
    color: #1a4a4a;
    border: 2px solid #1a4a4a;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guest-btn:hover {
    background: #1a4a4a;
    color: white;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-layout {
        gap: 40px;
    }
    
    .benefits-section {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .login-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-card {
        padding: 30px 25px;
    }
    
    .benefits-card {
        padding: 30px 25px;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-header {
        padding: 30px 0;
    }
    
    .login-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 25px 20px;
    }
    
    .benefits-card {
        padding: 25px 20px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
}
