/* Login page – simple split layout */

body.page-login {
    display: block;
    background: #eef1f4;
}

body.page-login > .site-footer {
    width: 100% !important;
    max-width: 100% !important;
}

.login-page-wrap {
    width: 100%;
    background: #eef1f4;
}
aside.login-page__brand{
    display: flex;
    justify-content: center ;
    gap: 100px;

}

.login-page__brand {
    background: #f5f8f6;
    border-radius: 16px;
    padding: 40px 36px 32px;
}

.login-page__brand-content {
    max-width: 520px;
}

.login-page__eyebrow {
    display: block;
    color: #059669;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.login-page__intro h1 {
    font-size: clamp(1.95rem, 2.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.14;
    color: #111827;
    margin: 0 0 14px;
}

.login-page__intro h1 span {
    color: #059669;
}

.login-page__intro p {
    margin: 0 0 24px;
    color: #6b7280;
    font-size: 0.97rem;
    line-height: 1.65;
}

.login-page__features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-page__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.login-page__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d1fae5;
    color: #059669;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.login-page__features strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.login-page__features span {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
}

.login-page__hero {
    margin-top: 8px;
}

.login-page__hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.login-page__form-panel {
    padding-top: 0;
}

.login-card {
    width: 540px;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 34px 32px 28px;
}

.login-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    border: 2px solid #a7f3d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.1rem;
}

.login-card__head {
    text-align: center;
    margin-bottom: 24px;
}

.login-card__eyebrow {
    display: block;
    color: #059669;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-card__head h2 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.login-card__head h2 span {
    color: #059669;
}

.login-card .alert {
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.login-card .alert-success {
    background: #ecfdf5;
    color: #047857;
    border-left: 4px solid #059669;
}

.login-card .alert-danger {
    background: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

.login-field {
    margin-bottom: 16px;
}

.login-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #111827;
}

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

.login-input-wrap i.login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
}

.login-input-wrap .form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 44px 0 42px;
    font-size: 0.94rem;
    color: #111827;
    background: #f9fafb;
    box-shadow: none;
}

.login-input-wrap .form-control:focus {
    border-color: #059669;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
    outline: none;
}

.login-input-wrap .form-control::placeholder {
    color: #9ca3af;
}

.login-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #9ca3af;
    padding: 4px;
    cursor: pointer;
}

.login-toggle-password:hover {
    color: #059669;
}

.login-forgot {
    text-align: right;
    margin-top: 8px;
}

.login-forgot a {
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.login-forgot a:hover {
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #059669;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.login-submit:hover {
    background: #047857;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 16px;
    color: #9ca3af;
    font-size: 0.84rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.login-google-btn {
    width: 100%;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #374151;
    font-size: 0.94rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: not-allowed;
    opacity: 0.85;
}

.login-google-btn svg {
    flex-shrink: 0;
}

.login-register {
    text-align: center;
    margin-top: 22px;
    color: #6b7280;
    font-size: 0.88rem;
}

.login-register a {
    color: #059669;
    font-weight: 700;
    text-decoration: none;
}

.login-register a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .login-page {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 16px 40px;
    }

    .login-page__brand {
        padding: 32px 24px 24px;
    }

    .login-page__form-panel {
        display: flex;
        justify-content: center;
    }
}
