/* =========================================
   BRIGHT ANGEL - CANDIDATE LOGIN UI
   ========================================= */

body {
    background-color: #f8fafc;
    font-family: 'Times New Roman', Times, serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

/* --- Main Layout Wrapper --- */
.login-page-wrapper {
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
}

.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

/* --- Left Branding & QR Panel --- */
.login-branding-panel {
    width: 45%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 50px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.login-branding-panel h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.login-branding-panel p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.qr-wrapper {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: inline-block;
}

.qr-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
}

.qr-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* --- Right Form Panel --- */
.login-form-panel {
    width: 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-panel h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
}

/* --- Form Elements --- */
.login-input-group {
    margin-bottom: 20px;
}

.login-input-group input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.login-input-group input:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.login-options label {
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.login-options a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.login-options a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* --- Buttons --- */
.btn-login {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-login:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.btn-google {
    width: 100%;
    background: #db4437;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-google:hover {
    background: #c53929;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(219, 68, 55, 0.3);
}

.register-link {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
}

.register-link a {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .login-container { flex-direction: column; }
    .login-branding-panel { width: 100%; padding: 40px 20px; }
    .login-form-panel { width: 100%; padding: 40px 30px; }
}