/* Healthcare theme overrides for login page */

/* Scoped to login components */
.login-card {
    max-width: 920px;
    margin: 40px auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 60, 97, 0.12);
}

.left-pane {
    background: linear-gradient(180deg, #0ea5a1 0%, #3b82f6 100%);
    color: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-pane h2 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.left-pane p {
    opacity: 0.95;
    margin-bottom: 20px;
}

.brand-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    background: #fff;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.right-pane {
    background: #fff;
    padding: 40px;
}

.input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

.form-control {
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid #e6eef0;
    box-shadow: none;
}

.btn-primary {
    background: #0ea5a1 !important;
    border-color: #0ea5a1 !important;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0b8f85 !important;
    border-color: #0b8f85 !important;
}

.bg-primary {
    background-color: #0ea5a1 !important;
}

.helper {
    font-size: 0.9rem;
    color: #64748b;
}

.illustration {
    width: 100%;
    height: auto;
    max-width: 220px;
}

@media (max-width:767px) {
    .login-card {
        margin: 20px;
    }

    .left-pane {
        padding: 28px;
    }
}

/* Small utility overrides to ensure consistent input spacing on this page */
.login-card .form-control,
.login-card .input-group-text {
    height: 44px;
}

/* Make checkbox label slightly darker */
.login-card input[type="checkbox"]+label.helper {
    color: #475569;
}

/* Accessibility: focus outlines */
.login-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(14, 165, 161, 0.12);
    outline: none;
    border-color: #0ea5a1;
}

/* Ensure toastr messages are visible on gradient */
.toast-top-right {
    z-index: 12000;
}