.hospital-login-page {
    min-height: 100vh;
    display: flex;
    background: #f4f7f9;
    font-family: 'Roboto', sans-serif;
}

.hospital-login-brand {
    flex: 1.1;
    background: linear-gradient(145deg, #0b3d4f 0%, #0f5c4a 50%, #14755a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hospital-login-brand::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -120px;
    right: -80px;
}

.hospital-login-brand::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(244, 162, 97, 0.12);
    bottom: -60px;
    left: -40px;
}

.hospital-login-brand-inner {
    position: relative;
    z-index: 1;
    max-width: 420px;
}

.hospital-login-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 1.75rem;
    box-shadow: 0 12px 32px rgba(231, 111, 81, 0.35);
}

.hospital-login-brand h1 {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.hospital-login-brand p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hospital-login-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hospital-login-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.hospital-login-features li i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #f4a261;
    font-size: 14px;
}

.hospital-login-form-panel {
    flex: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hospital-login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 20px 60px rgba(11, 61, 79, 0.1);
    border: 1px solid rgba(15, 92, 74, 0.08);
}

.hospital-login-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b3d4f;
    margin-bottom: 0.35rem;
}

.hospital-login-card .subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hospital-login-input-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.hospital-login-input-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0b3d4f;
    margin-bottom: 0.4rem;
}

.hospital-login-input-wrap {
    position: relative;
}

.hospital-login-input-wrap i.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #14755a;
    font-size: 16px;
    opacity: 0.7;
    pointer-events: none;
}

.hospital-login-input-wrap input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafbfc;
}

.hospital-login-input-wrap input:focus {
    outline: none;
    border-color: #14755a;
    box-shadow: 0 0 0 3px rgba(20, 117, 90, 0.15);
    background: #fff;
}

.hospital-login-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f5c4a 0%, #14755a 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.hospital-login-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 92, 74, 0.35);
    color: #fff;
}

.hospital-login-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.hospital-login-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef2f5;
    font-size: 0.75rem;
    color: #adb5bd;
}

@media (max-width: 991px) {
    .hospital-login-page {
        flex-direction: column;
    }

    .hospital-login-brand {
        flex: none;
        padding: 2.5rem 1.5rem;
    }

    .hospital-login-brand h1 {
        font-size: 1.35rem;
    }

    .hospital-login-features {
        display: none;
    }

    .hospital-login-form-panel {
        padding: 1.5rem;
        margin-top: -1rem;
    }

    .hospital-login-card {
        padding: 2rem 1.5rem;
    }
}
