.auth-page-wrap {
    min-height: 100vh;
    display: flex;
    background-color: var(--whiteColor);
    overflow: hidden;
}

.auth-visual-side {
    flex: 1;
    position: relative;
    background-image: var(--auth-bg, url('../img/auth-bg-1.png'));
    background-size: cover;
    background-position: center;
    display: none;
}

@media (min-width: 992px) {
    .auth-visual-side {
        display: block;
    }
}

.auth-visual-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 39, 96, 0.8) 0%, rgba(233, 80, 133, 0.4) 100%);
    z-index: 1;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: var(--whiteColor);
}

.auth-form-side {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: var(--whiteColor);
    min-height: 100vh;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .auth-form-side {
        width: 45%;
        min-width: 500px;
        padding: 40px;
    }
}

.auth-form-container {
    width: 100%;
    max-width: 500px;
}

.auth-logo {
    display: block;
    margin-bottom: 40px;
    text-align: center;
}

.auth-form-card {
    background: var(--whiteColor);
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--paraColor);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.auth-back-link:hover {
    color: var(--primaryColor);
    transform: translateX(-5px);
}

.auth-input-group {
    margin-bottom: 25px;
}

.auth-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--titleColor);
}

.auth-input {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: var(--transition);
    background-color: #F8FAFC;
}

.auth-input:focus {
    border-color: var(--secondaryColor);
    background-color: var(--whiteColor);
    box-shadow: 0 0 0 4px rgba(233, 80, 133, 0.1);
    outline: none;
}

.auth-btn {
    width: 100%;
    height: 55px;
    border-radius: 12px;
    background: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 700;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.auth-btn:hover {
    background: var(--secondaryColor);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 80, 133, 0.2);
}

.auth-footer-links {
    margin-top: 30px;
    text-align: center;
}

.auth-footer-links a {
    color: var(--primaryColor);
    font-weight: 600;
    font-size: 14px;
    margin: 0 10px;
    transition: var(--transition);
}

.auth-footer-links a:hover {
    color: var(--secondaryColor);
}

.auth-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 30px 0;
    position: relative;
    text-align: center;
}

.auth-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--whiteColor);
    padding: 0 15px;
    color: var(--paraColor);
    font-size: 13px;
}
/* Multi-Step Form Stepper */
.auth-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.auth-stepper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E2E8F0;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--whiteColor);
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--paraColor);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--paraColor);
    transition: all 0.3s ease;
}

.step-item.active .step-dot {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0 0 0 4px rgba(37, 39, 96, 0.1);
}

.step-item.active .step-label {
    color: var(--titleColor);
}

.step-item.completed .step-dot {
    background: var(--secondaryColor);
    border-color: var(--secondaryColor);
    color: var(--whiteColor);
}

/* Step Transitions */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-prev {
    background: #F8FAFC;
    color: var(--titleColor);
    border: 1px solid #E2E8F0;
}

.btn-prev:hover {
    background: #EDF2F7;
    color: var(--primaryColor);
}
