:root {
    --purple: #6C5CE7;
    --dark: #1A1A1A;
    --soft-bg: #F4F7FE;
}

.register-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 40px 20px;
}

.login-card {
    background: #ffffff;
    width: 100%;
}

.verify-card {
    max-width: 600px;
}

.brand-logo {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark);
    text-decoration: none;
    display: block;
}

.brand-logo span {
    color: var(--purple);
}

.section-divider {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--purple);
    margin: 30px 0 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background-color: #f8f9fa;
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--purple);
    box-shadow: none;
    outline: 0;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    z-index: 10;
    font-size: 1.1rem;
}

.btn-login {
    background-color: var(--dark);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: var(--purple);
    transform: translateY(-2px);
    color: white;
}

button.btn.btn-login {
    margin: 0;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: #aaa;
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider::before {
    margin-right: 15px;
}

.divider::after {
    margin-left: 15px;
}

.btn-social {
    flex: 1;
    border: 1px solid #eee;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.btn-social:hover {
    background: #f8f9fa;
}

.forgot-link {
    color: var(--purple);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.signup-text {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #777;
}

.signup-text a {
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
}

.code-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.code-inputs input {
    width: 100%;
    height: 65px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid transparent;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.otp-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.otp-input-container input {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: none;
    background: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid #6d5ce7;
}

.otp-input-container input:focus {
    border-color: #6C5CE7;
    background: none;
    outline: none;
}

.resend-text {
    margin-top: 20px;
}



   body, html { height: 100%; margin: 0; }
        .split-screen { display: flex; min-height: 100vh; }
        
        
        
    .image-side {
    flex: 1;
    background-size: contain !important;
    background-position: right center !important;
    background-attachment: fixed !important;
    display: flex;
    align-items: flex-end;
    background-repeat: no-repeat !important;
    padding: 60px;
}

footer.mt-5 {
    margin: 0 !important;
}


        .form-side {
            flex: 1;
            padding: 40px;
            background-color: #ffffff;
            overflow-y: auto;
        }
        .register-content {width: 100%; margin: 0 auto; }
        .text-purple { color: #6f42c1; }
        .section-divider {
            font-weight: 700;
            color: #6f42c1;
       
            padding-bottom: 5px;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        @media (max-width: 991px) {
            .image-side { display: none; }
        }
        
        
        .form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
}

.login-content {
    width: 100%;
}
