/* Login page — split layout */

.gh-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .gh-login-page {
        grid-template-columns: 1fr 1fr;
    }
}

.gh-login-visual {
    display: none;
    position: relative;
    background: var(--gh-navy, #0e2c40);
    overflow: hidden;
}

@media (min-width: 992px) {
    .gh-login-visual {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 100vh;
    }
}

.gh-login-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.gh-login-visual-content {
    position: relative;
    z-index: 2;
    padding: 4rem;
    color: #fff;
}

.gh-login-visual-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    max-width: 36rem;
}

.gh-login-visual-content p {
    font-size: 1.55rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 34rem;
}

.gh-login-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9rem 2rem 4rem;
    background: #f4f6f8;
}

@media (min-width: 992px) {
    .gh-login-panel {
        padding: 4rem 5rem;
    }
}

.gh-login-box {
    max-width: 42rem;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(14, 44, 64, 0.08), 0 12px 40px rgba(14, 44, 64, 0.08);
    padding: 3rem 2.5rem;
    border-top: 4px solid var(--gh-pink, #b94e8f);
}

.gh-login-box h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gh-gray-900, #1e2933);
    margin-bottom: 0.4rem;
}

.gh-login-box .gh-login-sub {
    font-size: 1.45rem;
    color: var(--gh-gray-700, #4a5568);
    margin-bottom: 2rem;
}

.gh-login-field {
    margin-bottom: 1.4rem;
}

.gh-login-field label {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gh-gray-900, #1e2933);
    margin-bottom: 0.5rem;
}

.gh-login-field input {
    width: 100%;
    border: 1px solid #dde3ea;
    border-radius: 6px;
    padding: 1rem 1.2rem;
    font-size: 1.45rem;
    font-family: inherit;
    background: #fafbfc;
    transition: border-color 0.2s;
}

.gh-login-field input:focus {
    outline: none;
    border-color: var(--gh-pink, #b94e8f);
    background: #fff;
}

.gh-login-submit {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.55rem;
    padding: 1.1rem;
}

.gh-login-divider {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e8ecf0;
}

.gh-login-links {
    text-align: center;
    font-size: 1.4rem;
}

.gh-login-links a {
    color: var(--gh-pink, #b94e8f);
    text-decoration: none;
    font-weight: 600;
}

.gh-login-links a:hover {
    text-decoration: underline;
}

.gh-login-links p {
    color: var(--gh-gray-700, #4a5568);
    margin: 0.6rem 0;
}

.gh-login-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    color: var(--gh-gray-700, #4a5568);
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.gh-login-back:hover {
    color: var(--gh-pink, #b94e8f);
}
