.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f4;
    padding: 24px;
}

.login-card {
    display: flex;
    width: 100%;
    max-width: 920px;
    min-height: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.login-brand {
    flex: 1;
    background: #0d2a35;
    color: #fff;
    padding: 40px 36px 32px;
    display: flex;
    flex-direction: column;
}

.login-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid #e6b422;
    border-radius: 14px;
    color: #e6b422;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.login-headline {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 24px;
    line-height: 1.2;
}

.login-headline .accent {
    color: #e6b422;
}

.login-tagline {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #8ba2ad;
    max-width: 340px;
}

.login-logo-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo-wrap img {
    max-width: 220px;
    max-height: 140px;
}

.login-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.login-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #e6b422;
    background: #1a3a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6b422;
    flex-shrink: 0;
}

.login-form-panel {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-panel h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.login-form-panel .subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.login-field label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.login-field .form-control {
    height: 40px;
    border-color: #d1d5db;
    border-radius: 6px;
}

.login-submit {
    height: 44px;
    background: #469EA5;
    border-color: #469EA5;
    font-weight: 600;
    margin-top: 8px;
}

.login-submit:hover {
    background: #2a7e8a;
    border-color: #2a7e8a;
}

.login-password-field {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "label forgot"
        "input input";
    column-gap: 8px;
    row-gap: 6px;
    align-items: baseline;
}

.login-password-field label {
    grid-area: label;
    margin-bottom: 0;
}

.login-password-field .form-control {
    grid-area: input;
}

.login-forgot {
    grid-area: forgot;
    color: #2a7e8a;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}

.login-forgot:hover {
    color: #1f646e;
    text-decoration: underline;
}

.login-signup {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.login-signup a {
    color: #2a7e8a;
    font-weight: 600;
    text-decoration: none;
}

.login-signup a:hover {
    color: #1f646e;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-card { flex-direction: column; min-height: auto; }
    .login-brand { padding: 32px 24px; }
    .login-form-panel { padding: 32px 24px; }
}
