.auth-page-body {
    background: #f8fafc;
    min-height: 100vh;
}

.auth-page-main {
    min-height: 100vh;
    padding: 0 !important;
}

.central-login {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.central-login__form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
}

.central-login__form-inner {
    width: 100%;
    max-width: 420px;
}

.central-login__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.central-login__brand img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.central-login__brand span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.central-login__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.central-login__subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.central-login__field {
    margin-bottom: 1.25rem;
}

.central-login__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.45rem;
}

.central-login__input-wrap {
    position: relative;
}

.central-login__input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
}

.central-login__input-wrap .form-control {
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.central-login__input-wrap .form-control:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.central-login__input-wrap .form-control.is-invalid {
    border-color: #ef4444;
    background: #fff;
}

.central-login__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 1.75rem;
    flex-wrap: wrap;
}

.central-login__remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: #475569;
    cursor: pointer;
}

.central-login__remember input {
    width: 1rem;
    height: 1rem;
    accent-color: #2563eb;
}

.central-login__forgot {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
}

.central-login__forgot:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.central-login__submit {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.central-login__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.34);
    color: #fff;
}

.central-login__submit:active {
    transform: translateY(0);
}

.central-login__visual {
    flex: 1.05;
    position: relative;
    display: none;
    overflow: hidden;
    min-height: 320px;
}

.central-login__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.central-login__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.72) 0%, rgba(37, 99, 235, 0.55) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: #fff;
}

.central-login__visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    font-size: 0.8125rem;
    font-weight: 500;
}

.central-login__visual-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.central-login__visual-text {
    max-width: 420px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.central-login__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.8125rem;
    color: #94a3b8;
}

@media (min-width: 992px) {
    .central-login__visual {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .central-login {
        min-height: 100vh;
    }

    .central-login__form {
        padding: 2rem 1.25rem 2.5rem;
    }
}
