/* Login Page Styles */
html, body {
    height: 100%;
    margin: 0;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #f4f7fd 0%, #eef6ff 100%);
    padding: 2.5rem 1rem;
    box-sizing: border-box;
}

.login-card {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(80, 90, 120, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    box-sizing: border-box;
}

.brand-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-panel .logo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 34px;
}

.brand-panel h1 {
    font-size: 1.25rem;
    margin: 0 0 .25rem 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-panel p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.form-panel {
    padding: 4.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-inner {
    width: 100%;
    max-width: 340px;
}

.small-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: .75rem;
}

.forgot-link {
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .login-card {
        grid-template-columns: 1fr;
    }
    .brand-panel {
        padding: 1.25rem;
    }
    .form-panel {
        padding: 1.25rem;
    }
}
