/* Auth layout styles - split-screen hero + card */

.auth-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}

.auth-layout {
    display: flex;
    min-height: 100vh;
}

/* Hero section (left pane) */
.auth-hero {
    flex: 1;
    background: url('/wp-content/gf-app/public/brand/Chapman-135-1024x684.jpg') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.auth-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.auth-hero-content {
    color: white;
    text-align: center;
    max-width: 500px;
}

.auth-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.auth-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.auth-hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.auth-hero-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.auth-hero-features .bi {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    color: #4CAF50;
}

/* Card section (right pane) */
.auth-card-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

.auth-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 400px;
}

.auth-card .panel-body {
    padding: 2rem;
}

/* Form styling */
.auth-card h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.auth-card form {
    margin-top: 1.5rem;
}

.auth-card .form-group {
    margin-bottom: 1rem;
}

.auth-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.auth-card input[type="text"]:focus,
.auth-card input[type="email"]:focus,
.auth-card input[type="password"]:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.2);
}

.auth-card .checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.auth-card .checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}

.auth-card .btn {
    width: 100%;
    padding: 0.75rem;
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-card .btn:hover {
    background: #2a5298;
}

.auth-card .btn-secondary {
    background: #6c757d;
}

.auth-card .btn-secondary:hover {
    background: #5a6268;
}

.auth-card p {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 767px) {
    .auth-layout {
        flex-direction: column;
    }
    
    .auth-hero {
        min-height: 40vh;
        flex: none;
    }
    
    .auth-hero-overlay {
        padding: 1rem;
    }
    
    .auth-hero-title {
        font-size: 2rem;
    }
    
    .auth-hero-subtitle {
        font-size: 1rem;
    }
    
    .auth-hero-features {
        display: none; /* Hide features on mobile to save space */
    }
    
    .auth-card-col {
        padding: 1rem;
    }
    
    .auth-card {
        max-width: 100%;
    }
}

/* Logo styling */
.auth-logo {
    display: block;
    margin: 0 auto 15px;
    max-width: 180px;
    height: auto;
}

@media (min-width: 768px) {
    .auth-logo {
        margin-bottom: 20px;
    }
}