/* CSS Variables based on Image Theme (Blue/Purple Accents, Verification Focus) */
:root {
    --primary-purple: #000000;
    /* Main Button Color */
    --primary-light: #f0f3ff;
    /* Light background */
    --white: #ffffff;
    --gray-900: #1f2937;
    --gray-500: #6b7280;
    --success-green: #34d399;
    /* Green for checkmark/padlock */
    --secondary-blue: #000000;
    /* Accent color for the shield/illustration */
    --padding-v: 2vh;
    --padding-h: 2vw;
}

/* 1. Global Reset & Fixed Viewport Setup */
html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    height: 100vh;
    margin: 0;
    padding: var(--padding-v) var(--padding-h);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);

}

.main-card {
    background-color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    /* rounded-3xl */
    width: 100%;
    max-width: 900px;
    /* Standard width for this layout */
    max-height: calc(100vh - 2 * var(--padding-v));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}


.illustration-panel {
    /* Mobile: Illustration at the bottom */
    /* padding: 2rem 1rem; */
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    flex-shrink: 0;
    display: flex;
    order: 3;
    /* Order 3 on mobile */
    min-height: 250px;
  
}

.mockup-container {
    width: 90%;
    max-width: 300px;
    height: 250px;
    background: none;
    /* No container needed, the illustration is self-contained */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.form-row {
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-size: 1rem;
    min-height: .75rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(76, 83, 224, 0.2);
}

/* 6. Form Elements */


/* 7. Button Styles */
.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(76, 83, 224, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    /* margin-bottom: 4rem; */

}

.submit-btn:hover {
    opacity: 0.9;
    transition: 0.5ss;
}


.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* padding: 0.8rem; */
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;

}

.social-btn:hover {
    border-color: var(--primary-purple);
}

.password-container {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-500);
}
.password-toggle{
position: absolute;

    
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-500);
}
/* Row containing Remember Me and Forgot Password */
.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    flex-shrink: 0;
}

.msg-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.msg-success {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #6ee7b7;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-primary {
    color: #000000;
    /* Soft red/pink for the 'Sign up' and 'Forgot Password' links as in the image */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-primary:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.signup-link-container {
    margin-top: clamp(1rem, 2vh, 1.5rem);
    font-size: 0.9rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

/* OR Separator */
.separator {
    display: flex;
    align-items: center;
    margin: clamp(1.5rem, 3vh, 2rem) 0;
    flex-shrink: 0;
}

.separator-line {
    flex-grow: 1;
    border-top: 1px solid #e5e7eb;
}

.separator-text {
    flex-shrink: 0;
    margin: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 8. Utility & Links */
.link-primary {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-primary:hover {
    text-decoration: underline;
}

.back-link {
    display: none;
    /* Removed for this flow */
}

.text-center {
    text-align: center;
}

.login-link-container {
    margin-top: clamp(1rem, 2vh, 1.5rem);
    font-size: 0.9rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

/* OR Separator */
.separator {
    display: flex;
    align-items: center;
    margin: clamp(1.5rem, 3vh, 2rem) 0;
    flex-shrink: 0;
}

.separator-line {
    flex-grow: 1;
    border-top: 1px solid #e5e7eb;
}

.separator-text {
    flex-shrink: 0;
    margin: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 2. Main Card Container */
.main-cardd-verify {
    background-color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    /* rounded-3xl */
    width: 100%;
    max-width: 900px;
    max-height: calc(100vh - 2 * var(--padding-v));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 3. Form Panel (Left Side in this layout) */
.form-paneld-verify {
    width: 100%;
    /* Adaptive padding */
    padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    flex-shrink: 1;
    order: 1;
    /* Form is on the left/top */
}

/* 4. Illustration Panel (Right Side in this layout) */
.illustration-paneld-verify {
    /* Mobile: Illustration at the bottom */
    padding: 2rem 1rem;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    flex-shrink: 0;
    display: flex;
    order: 2;
    /* Illustration is on the right/bottom */
    min-height: 250px;
}

.mockup-containerd-verify {
    width: 100%;
    max-width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Logo (Top Left, always visible) */
.logo-containerd-verify {
    display: flex;
    align-items: center;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    justify-content: flex-start;
}

/* 5. Typography */
.headingd-verify {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}

.subheadingd-verify {
    color: var(--gray-500);
    font-size: clamp(0.875rem, 1.8vh, 1rem);
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    flex-shrink: 0;
}

/* 6. Form Elements */
.form-rowd-verify {
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    flex-shrink: 0;
}

.code-containerd-verify {
    position: relative;
}

.form-inputd-verify {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-size: 1rem;
    min-height: 2.75rem;
    padding-right: 3rem;
    /* Space for the icon */
}

.form-inpud-verify:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(76, 83, 224, 0.2);
}

.input-icon-btnd-verify {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--gray-500);
}

/* Containers initial states */
#signup-form
#otp-box {
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: relative;
}

/* Signup form visible */
#signup-form.show {
    display: flex;
    pointer-events: auto;
    animation: slide-in-left .5s cubic-bezier(.25, .46, .45, .94) both
}

/* Signup form hidden by sliding left */
#signup-form.hide {
    pointer-events: none;
    display: none;
    /* keep for transition */

}


#otp-box.show {
    display: flex;
    pointer-events: auto;

}

#otp-box.hide {
    display: none;
    pointer-events: none;

}

.msg-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.msg-success {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #6ee7b7;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visible {
    opacity: 1;
}

/* 7. Button Styles */
.submit-btnd-verify {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(76, 83, 224, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submit-btnd-verify:hover {
    transition: 0.5s;
    opacity: 0.9;
}

/* 9. Checkbox */
.checkbox-container {
    display: flex;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    accent-color: var(--primary-purple);
    flex-shrink: 0;
}

/* 8. Utility & Links */
.link-primaryd-verify {
    color: #000000;
    /* Soft red/pink for the resend link as in the image */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-primaryd-verify:hover {
    text-decoration: underline;
}

.back-linkd-verify {
    display: flex;
    align-items: center;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.back-linkd-verify:hover {
    color: var(--primary-purple);
}

.branding {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
 

}
.logo-container-responsive{
 margin-top: 10px;
    padding: 10px;
    display: none
}
.resend-containerd-verify {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (min-width: 1024px) {
    .main-card {
        flex-direction: row;
        max-height: calc(100vh - 2 * var(--padding-v));

    }


    .form-panel {
        order: 1;
        /* Left side */
        /* width: 45%; */
        min-width: 380px;
        height: auto;
        border-top-right-radius: 0;
        border-bottom-left-radius: 1.5rem;
        padding: 2rem;

    }

    .illustration-panel {
        order: 2;
        /* Right side */
        width: 55%;
        height: auto;
        border-top-right-radius: 1.5rem;
        border-bottom-left-radius: 0;
        padding: 4rem 2rem;


    }

    .mockup-container {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width:1021px) {
    .illustration-panel {
        display: none;
    }

    .form-panel {
        padding: 1rem;
    }

    .illustration-paneld-verify {
        display: none;
    }

    .main-card {
        /* width: 300px; */
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        height: 100vh;
        /* background-color: #059669; */
        margin-top: 0;
        

    }
    .main-cardd-verify{
        background-color: white;
    }
    .logo-container-responsive{
        display: flex;
        justify-content: center;

    }
    #brand{
        display: none;
    }
    .form-row {
    margin-bottom: clamp(1.5rem, 2vh, 1.5rem);
    flex-shrink: 0;
}
    .logo-container{
        display: none;
    }


    .branding {
        display: none;
    }

    body {
        background-color: white;
       display: flex;
    }
}

/* 9. Desktop Responsiveness (lg: breakpoint - 1024px) */
@media (min-width: 1024px) {
    .main-cardd-verify {
        flex-direction: row;
        max-height: calc(100vh - 2 * var(--padding-v));
    }

    .form-paneld-verify {
        order: 1;
        /* Left side */
        width: 55%;
        min-width: 380px;
        height: auto;
        border-top-right-radius: 0;
        border-bottom-left-radius: 1.5rem;
        padding: 4rem;
    }

    .illustration-paneld-verify {
        order: 2;
        /* Right side */
        width: 45%;
        height: auto;
        border-top-right-radius: 1.5rem;
        border-bottom-left-radius: 0;
        padding: 4rem 2rem;
    }

    .mockup-containerd-verify {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

/* Forget Password */

/* 2. Main Card Container */
.main-card-reset {
    background-color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 1.5rem;
    /* rounded-3xl */
    width: 100%;
    max-width: 900px;
    /* Slightly smaller max-width for this layout */
    max-height: calc(100vh - 2 * var(--padding-v));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 3. Form Panel (Left Side in this layout) */
.form-panel-reset {
    width: 100%;
    /* Adaptive padding */
    padding: clamp(2rem, 5vh, 4rem) clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    flex-shrink: 1;
    order: 2;
    /* Default to mobile: form below logo */
}

/* 4. Illustration Panel (Right Side in this layout) */
.illustration-panel-reset {
    /* Mobile: Illustration at the bottom */
    padding: 2rem 1rem;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    flex-shrink: 0;
    display: flex;
    order: 3;
    /* Order 3 on mobile */
    min-height: 250px;
}

.mockup-container-reset {
    width: 100%;
    max-width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Logo (Top Left of the Form Panel) */
.logo-container-reset {
    display: flex;
    align-items: center;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    flex-shrink: 0;
    justify-content: flex-start;
    /* Moved to the left for this layout */
    order: 1;
}

/* 5. Typography */
.heading-reset {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    flex-shrink: 0;
}

.subheading-reset {
    color: var(--gray-500);
    font-size: clamp(0.875rem, 1.8vh, 1rem);
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    flex-shrink: 0;
}

/* 6. Form Elements */
.form-row-reset {
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    flex-shrink: 0;
}

.form-input-reset {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-size: 1rem;
    min-height: 2.75rem;
}

.form-input-reset:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(76, 83, 224, 0.2);
}

/* 7. Button Styles */
.submit-btn-reset {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(76, 83, 224, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submit-btn-reset:hover {
    opacity: 0.9;
    transition: 0.5s;
}

.social-btn-container-reset {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: clamp(1.5rem, 3vh, 2rem);
    flex-shrink: 0;
}

.social-btn-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn-reset:hover {
    border-color: var(--primary-purple);
}

/* 8. Utility & Links */
.link-primary-reset {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-primary-reset:hover {
    text-decoration: underline;
}

.back-link-reset {
    display: flex;
    align-items: center;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.back-link-reset:hover {
    color: var(--primary-purple);
}

.text-center-reset {
    text-align: center;
}

.login-link-container-reset {
    margin-top: clamp(1rem, 2vh, 1.5rem);
    font-size: 0.9rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

/* OR Separator */
.separato-reset {
    display: flex;
    align-items: center;
    margin: clamp(1.5rem, 3vh, 2rem) 0;
    flex-shrink: 0;
}

.separator-line-reset {
    flex-grow: 1;
    border-top: 1px solid #e5e7eb;
}

.separator-text-reset {
    flex-shrink: 0;
    margin: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* 9. Desktop Responsiveness (lg: breakpoint - 1024px) */
@media (min-width: 1024px) {
    .main-card-reset {
        flex-direction: row;
        max-height: calc(100vh - 2 * var(--padding-v));
        /* Swap panel order for desktop */
    }

    .form-panel-reset {
        order: 1;
        /* Left side */
        width: 45%;
        min-width: 380px;
        height: auto;
        border-top-right-radius: 0;
        border-bottom-left-radius: 1.5rem;
        padding: 4rem;
    }

    .illustration-panel-reset {
        order: 2;
        /* Right side */
        width: 55%;
        height: auto;
        border-top-right-radius: 1.5rem;
        border-bottom-left-radius: 0;
        padding: 4rem 2rem;
    }

    .mockup-container-reset {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

/* Containers initial states */



/* Signup form visible */
#login.show {
    display: flex;
     pointer-events: auto;
    animation: slide-in-left .5s cubic-bezier(.25, .46, .45, .94) both;
}


/* ----------------------------------------------
 * Generated by Animista on 2025-12-13 11:17:26
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
    0% {
        transform: translateX(-100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-12-13 11:20:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-right {
    0% {
        transform: translateX(100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

/* Signup form hidden by sliding left */
#login.hide {
    display: none;
    transform: translateX(-100%);
    pointer-events: none;



}

#forget {
    display: flex;
    /* or block/flex based on your layout */
    pointer-events: none;
    display: none;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#forget.show {
    display: flex;
    pointer-events: auto;
    position: static;
    animation: slide-in-right .5s cubic-bezier(.25, .46, .45, .94) both
}

#forget.hide {
    display: none;
    pointer-events: none;

}
@media  (max-width:1000px){
    .illustration-panel-reset{
        display:none;
    }
    .mockup-container-reset{
        display: none;
    }
    #forget{
           flex-direction: column;
justify-content: center;
background-color: #ffffff;
border-radius: none;
box-shadow: none;
height: 100vh;

    }
    
#otp-box 
 {   
    flex-direction: column;
justify-content: center;
background-color: #ffffff;
border-radius: none;
box-shadow: none;
height: 100vh;

}

.main-card{
    padding: 0;
}
#login{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

}