body {
    background-color: var(--bs-body-bg)
}

header{
    display: none;
}

#auth {
    height: 100vh;
    overflow-x: hidden
}

#auth #auth-right {
    height: 100%;
    background: url(../img/auth.png) center/cover no-repeat #f7fbfa;
    backdrop-filter: blur(60px)
}

.auth-right-img {
    padding: 10rem 0 !important
}

#auth #auth-left {
    padding: 5rem
}

#auth #auth-left .auth-title {
    font-family: Manrope;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px
}

#auth #auth-left .auth-logo {
    margin-bottom: 2rem
}

#auth #auth-left .auth-logo img {
    height: 2rem
}

@media screen and (max-width:1399.9px) {
    #auth #auth-left {
        padding: 3rem
    }
}

@media screen and (max-width:767px) {
    #auth #auth-left {
        padding: 5rem
    }
}

@media screen and (max-width:576px) {
    #auth #auth-left {
        padding: 2rem 1rem
    }
}
.invalid-feedback, #emailError, #mobileError {
    display: block;
    font-size: 14px;
    margin-top: 4px;
    color: red;
}
small{
    font-size: 14px;
}


.form-select:focus{
    box-shadow: unset!important;
}
.auth-page .form-check.checked {
    background-color: #EBF0EC;
}

.auth-page .form-check {
    color: #212529;
    border-radius: 24px;
    padding: 6px 12px 6px 36px;
    transition: background-color 0.3s, color 0.3s;
}
.auth-page .form-check-input:focus {
    box-shadow: 0px!important;
}

.form-check-input:focus{
    box-shadow: unset!important;
}
.max-width-520{
    max-width: 520px;
    width: 100%;
}

.max-width-620 {
    max-width: 620px;
    width: 100%;
}


.otp-container {
    width: 100%;
}

.otp-message {
    font-size: 14px;
    color: #000;
}

.auth-subtitle .email {
    color: #5ec646;
}

.otp-inputs input {
    width: 45px;
    height: 45px;
    font-size: 24px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: none;
}

.otp-box:focus {
    border-color: #5ec646;
    outline: none;
}

.terms-link {
    color: #5ec646;
    text-decoration: underline;
}

.timer {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.btn-success {
    background-color: #5ec646;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 8px;
}

.resend-otp {
    color: #5ec646;
    font-size: 14px;
    text-decoration: none;
}

/* General container */
.sign-in-form {
    width: 300px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Instruction */
.sign-in-instruction {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Radio button group */
.input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.input-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #000;
}

/* Input box for email */
.input-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 10px;
    padding-left: 40px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.email-input::placeholder {
    color: #999;
}

/* Email icon */
.icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
}

/* OTP input boxes */
.otp-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 16px;
}

.otp-box {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ddd;
    outline: none;
    display: flex;
    transition: border-color 0.3s;
}

.otp-box:focus {
    border-color: #4CAF50;
}

/* Send OTP button */
.btn {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.btn:disabled {
    background-color: #ddd;
}

.resend-otp-link {
    color: #4CAF50;
    text-decoration: none;
    margin-bottom: 10px;
}

.resend-otp-link:hover {
    text-decoration: underline;
}

/* Sign-in link */
.sign-in-link {
    font-size: 14px;
}

.sign-in-link a {
    color: #4CAF50;
    text-decoration: none;
}

.sign-in-link a:hover {
    text-decoration: underline;
}

.btn-otp:hover{
    background-color: #4CAF50;
    color: #fff;
}




.option-card {
    border: 2px solid #4FAA47;
    padding: 20px;  /* Increased padding for better spacing */
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;  /* Smooth background transition */
    margin: 40px 0;  /* Reduced margin for better spacing */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Light shadow for better elevation */
    min-height: 230px;
    max-height: 230px;
}

.option-card.active {
    border-color: #4FAA47;
    background-color: #F6F7F6;  /* Slightly softer green background */
}

.option-card h6 {
    font-weight: 600;
    font-size: 18px;  /* Increased font size */
    color: #333;  /* Darker text for better readability */
}

.option-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 12px;  /* Added space between the heading and list */
}

.option-card ul li {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;  /* Added more space between list items */
    display: flex;
    align-items: center;
    position: relative;
    left: 24px;
}

.option-card ul li::before {
    content: "•";
    margin-right: 10px;
    font-weight: bold;
    color: #4FAA47;  /* Changed bullet color to match the theme */
    top: 0;
    position: absolute;
    left: -24px;
}

.next-btn {
    background-color: #4FAA47;
    border: none;
    color: white;
    padding: 14px;  /* Increased padding for a larger button */
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    max-width: 320px;
    margin: 30px auto;  /* Adjusted margin for better spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;  /* Smooth hover effect */
}

.next-btn:hover {
    background-color: rgb(34, 139, 34);  /* Slightly darker hover state */
}

.submit-btn {
    background-color: #4FAA47;
    border: none;
    color: white;
    padding: 14px;  /* Increased padding for a larger button */
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    max-width: 320px;
    margin: 30px auto;  /* Adjusted margin for better spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;  /* Smooth hover effect */
}

.submit-btn:hover {
    background-color: rgb(34, 139, 34);  /* Slightly darker hover state */
}

.sign-in-link {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.sign-in-link a {
    color: #4FAA47;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;  /* Smooth hover transition */
}

.sign-in-link a:hover {
    text-decoration: underline;
    color: #3b9b3b;  /* Darker color on hover */
}

/* Spinner for loading effect on button */
.spinner-border {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: green;  /* Match spinner color with button */
}

.verified-abso{
    position: absolute;
    right: 12px;
    top: 10px;
}



spinner-border.otp-boxs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-content {
    padding: 20px;
}

.resend-link {
    color: green;
    cursor: pointer;
}

.timer {
    color: #333;
    font-weight: bold;
}

.modal-footer {
    justify-content: center;
}

.submit-btn {
    background-color: #28a745;
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: #218838;
}

.verify-btn{
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 12px !important;
    border-radius: 15px!important;
}

.verify-btn:hover{
    background-color: #369139;
    color: #fff;
}
.form-check-input:checked{
    background-color:#369139!important;
    border: 1px solid #369139;
}
.form-check-input[type=checkbox]{
    border-radius: 50%;
}
.form-check-input{
    height: 1.2rem;
    width: 1.2em;
}
.form-check-input:focus{
    box-shadow: 0px!important;
}


/* New Css Here  */





  /* ================= ROOT VARIABLES ================= */
:root {
  --background: 0 0% 100%;
  --foreground: 210 11% 15%;
  --card: 0 0% 100%;
  --card-foreground: 210 11% 15%;
  --popover: 0 0% 100%;
  --popover-foreground: 210 11% 15%;
  --primary: 134 61% 41%;
  --primary-foreground: 0 0% 100%;
  --secondary: 134 30% 97%;
  --secondary-foreground: 210 11% 15%;
  --muted: 210 11% 96%;
  --muted-foreground: 210 11% 45%;
  --accent: 134 50% 95%;
  --accent-foreground: 134 61% 30%;
  --destructive: 0 84% 60%;
  --border: 210 14% 89%;
  --input: 210 14% 83%;
  --ring: 134 61% 41%;
  --radius: 1rem;
}

/* ================= AUTH LAYOUT ================= */
.auth-wrapper {
  display: flex;
  min-height: 100vh;
}
/* 
.auth-brand {
    border: 1px solid red;
    background: hsl(var(--primary) / 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    span{
        font-size: 14px;
        padding: 6px 15px;
        background:  hsl(var(--primary) / 0.1);
        border-radius: 25px;
        color: hsl(var(--primary));
        font-weight: 500;
    }
    h2{
        font-size: 1.5rem;
        font-weight: 800;
        span{
            background: unset;
            font-size: 1.5rem;
            color: hsl(var(--primary));
            font-weight: 800;
            padding: 0px;
        }
    }
    p{
        color: hsl(var(--muted-foreground));
    }
    .auth-card-bottom{
        background-color: hsl(var(--background) / 0.5);
        border-radius: 10px;
        h2{
            font-size: 16px;
            font-weight: 500;
        }
        p{
            font-size: 14px;
        }
    }
    .btn{
        width: auto;
        padding: 10px 25px;
        height: unset;
    }

    .bg-background-50 {
        background-color: hsl(var(--background) / .5);
    }
} */
.leading-relaxed {
    line-height: 1.625;
}


.bor{
    border: 1px solid red;
}

.auth-section{
    position: relative;
    background: #FFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(244, 250, 246, 1) 50%);
    &:after{
        position:absolute;
        content: "";
        left: 0px;
        top:0px;
        height: 100%;
        width: 50%;
        background: hsl(var(--primary) / 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
   
       .center-logo{
            z-index: 99;
            margin-top: 15px;
            margin-left: 15px;
            img{
                width: 250px;
            }
       }
           
    
    .auth-brand {
        position: relative;
        .center-box{
            max-width: 550px;
        }
        .floating-circles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }
        .circle {
            position: absolute;
            border-radius: 50%;
            background: hsl(var(--primary));
            opacity: 0.07;
            animation: circleFloat 20s ease-in-out infinite;
        }
        .circle-big {
            width: 120px;
            height: 180px;
            top: -30px;
            left: 15px;
            border-radius: 0 320px 320px 0;
            animation-duration: 28s;
        }
        .circle-mid {
            width: 220px;
            height: 220px;
            bottom: -100px;
            left: 21%;
            animation-duration: 22s;
        }
        .circle-small {
            width: 250px;
            height: 250px;
            right: -120px;
            bottom: -100px;
            animation-duration: 18s;
            z-index: -1;
        }

        > *:not(.floating-circles) {
            position: relative;
            z-index: 2;
        }

        span{
            font-size: 14px;
            padding: 6px 15px;
            background:  hsl(var(--primary) / 0.1);
            border-radius: 25px;
            color: hsl(var(--primary));
            font-weight: 500;
        }
        h2{
            font-size: 36px;
            font-weight: 800;
            line-height: 1.5;
            padding: 0px 0px;
            
            span{
                background: unset;
                font-size: 36px;
                color: hsl(var(--primary))!important;
                font-weight: 800;
                padding: 0px;
            }
        }
        p{
            color: hsl(var(--muted-foreground));
        }
        .auth-card-bottom{
            background-color: hsl(var(--background) / 0.5);
            border-radius: 10px;
            border: 1px solid hsl(var(--border) / 0.4);
            h3{
                font-size: 12px;
                font-weight: 500;
                text-align: left;
            }
            p{
                font-size: 12px;
                text-align: left;
                margin-bottom: 0px;
            }
            .icons{
                text-align: left;
                height: 40px;
                width: 40px;
                background: hsl(135, 42%, 91%);
                border-radius: 10px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 18px;
                color: hsl(var(--primary))

            }
        }
        .btn{
            width: auto;
            padding: 12px 25px;
            height: unset;
        }

        .bg-background-50 {
            background-color: hsl(var(--background) / .5);
        }
    }
    .left-panel{
        position: relative;
        
        .bottom-content{    
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            bottom: 0px; 
            border-top: 1px solid hsl(var(--border) / 0.3);
            .counter-card{
                text-align: center;
                .num{
                    color: hsl(var(--primary));
                    font-size: 20px;
                    font-weight: 700;
                }
                .text{
                    p{
                        color: hsl(var(--muted-foreground));
                        font-size: 14px;
                        font-weight: 400;
                    }
                }
            }
        }
    }

    .auth-form {
        width: 100%;
        max-width: 520px;
        margin: auto;
        padding: 40px;
        position: relative;
        .icon-box {
            width: 64px;
            height: 64px;
            background: hsl(var(--primary) / 0.12);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            i {
            font-size: 28px;
            color: hsl(var(--primary));
            }
        }
        a{
            text-decoration: none;
        }
        .auth-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            
            
            .method-toggle {
                display: flex;
                border-radius: 14px;
                padding: 6px;
                margin-bottom: 20px;
                button {
                    flex: 1;
                    border: none;
                    background: transparent;
                    padding: 12px;
                    font-weight: 500;
                    border-radius: 10px;
                    cursor: pointer;
                    color: #5b6672;
                    }
                
                }
                button.active {
                    background: hsl(var(--primary));
                    color: #fff;
                    border: 1px solid hsl(var(--primary));
                }
            }
            .input-group {
                position: relative;
            }
            .input-icon {
                position: absolute;
                top: 50%;
                left: 16px;
                transform: translateY(-50%);
                color: #6c757d;
            }

            .form-control {
                width: 100%;
                height: 52px;
                padding-left: 44px;
                border-radius: 12px;
                border: 1px solid hsl(var(--border));
                font-size: 15px;
            }
            .otp-input {
                display: flex;
                justify-content: space-between;
                gap: 8px;
                input {
                    width: 48px;
                    height: 52px;
                    text-align: center;
                    font-size: 20px;
                    border-radius: 10px;
                    border: 1px solid hsl(var(--border));
                }
            }
            .back-btn {
                background: none;
                border: none;
                color: #6c757d;
                margin-bottom: 16px;
                cursor: pointer;
            }
            .text-primary{
                color:  hsl(var(--primary))!important;
            }

            
    }
    .btn-primary {
        width: 100%;
        height: unset;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        border: none;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        &:hover{
            background: hsl(var(--primary))!important;
        }
    }

    .btn-primary:hover {
        opacity: 0.9;
    }
    .register-right-panel{
        min-height: 100vh;
        background: linear-gradient(135deg,
        hsl(var(--background)),
        hsl(var(--background)),
        hsl(var(--primary) / 0.05)
    );
            

    .step {
        display: none;
        animation: fadeUp .35s ease;
    }

    .step.active {
        display: block;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .account-card {
        border: 2px solid hsl(var(--border));
        border-radius: var(--radius);
        padding: 1.5rem;
        cursor: pointer;
        transition: .3s;
        background: hsl(var(--card));
    }

    .account-card:hover,
    .account-card.active {
        border-color: hsl(var(--primary));
        background: hsl(var(--primary) / .06);
    }

    .glass-card {
        background: hsl(var(--card) / .9);
        border: 1px solid hsl(var(--border));
        border-radius: calc(var(--radius) + .25rem);
        backdrop-filter: blur(8px);
    }
    .btn-primary {
        background: hsl(var(--primary));
        border-color: hsl(var(--primary));
        border-radius: var(--radius);
        font-weight: 600;
    }

    .btn-primary:hover {
        background: hsl(var(--primary) / .9);
    }

    .btn-verify {
        border-radius: calc(var(--radius) - .25rem);
        border: 1px solid hsl(var(--primary));
        background: transparent;
        color: hsl(var(--primary));
        font-weight: 600;
    }

    .btn-verify:hover {
        background: hsl(var(--primary));
        color: #fff;
    }

    }
    .text-muted-foreground{
       color: hsl(var(--muted-foreground))

    }
    

    .register-panel{
        position: relative;
        z-index: 999;
        background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(244, 250, 246, 1) 50%);
        .text-green{
            color:hsl(var(--primary));
            font-size: 16px;
        }
        h2{
            font-size: 36px;
        }
        .ul-section {
            text-align: left;
            margin-top: 10px;
            ul {
                margin: 0px;
                padding: 0px;
                li {
                    list-style: none;
                    font-size: 12px;
                    line-height: 1.8;
                    text-align: left;
                    position: relative;
                    margin-bottom: 8px;
                    padding-left: 22px;  

                    &::before {
                        content: "\f26e";               
                        font-family: bootstrap-icons !important;
                        font-weight: normal;
                        position: absolute;
                        left: 0;
                        font-size: 20px;
                        top: -6px;
                        color: hsl(var(--primary));

                    }
                }
            }
        }

        .account-card-register {
            width: 100%;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 20px;
            background: #fff;
            text-align: center;
            cursor: pointer;
            min-height: 180px;
            transition: .3s;
            i {
                color: #22c55e;
            }
            small{
                font-size: 12px;
                text-align: left;
            }
            h6{
                font-size: 18px;
                color: #000;
            }
            .icon-main{
                /* background: linear-gradient(135deg,hsl(var(--primary) / .1),hsl(var(--primary) / .05)); */
                background: hsl(var(--muted));
                height: 45px;
                width: 45px;
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                i{
                    margin: 0px;
                    padding:0px;
                    font-size: 22px;
                    color: hsl(var(--muted-foreground))
                }
            }
        }
        .account-card-register.active {
            border-color: #22c55e;
            background: #f0fdf4;
            .icon-main{
                background: hsl(var(--primary));
                i{
                     color:#fff;
                }
            }
            .ul-section {
                li{
                    &::before {
                        color:hsl(var(--primary));
                    }
                }
            }

            
        }
        .card{
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 0px;
        }


        a{
            text-decoration: none;
        }
        .btn{
            width: auto;
        }
        .input-group{
            gap: 0px;
        }
        .input-group-text{
            border-right: 0px;
            background: unset;
            border-radius: 12px;
        }
        .form-control {
            height: 52px;
            border-radius: 12px;
            border: 1px solid hsl(var(--border));
            font-size: 15px;
        }
        .border-l{
            border-left: 0px;
            padding-left: 0px;
            border-top-right-radius:12px!important;
            border-bottom-right-radius:12px!important;
        }
        .form-select {
            height: 52px;
        
            border-radius: 12px;
            border: 1px solid hsl(var(--border));
            font-size: 15px;
        }

       
    }
    .btn-primary {
        width: 100%;
        height: unset;
        background: hsl(var(--primary));
        color: hsl(var(--primary-foreground));
        border: none;
        border-radius: 0.75rem;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 5px 10px hsla(134, 61%, 41%, 0.35);
        &:hover{
            background: hsl(var(--primary))!important;
        }
    }
    .form-control:focus{
        box-shadow: unset!important;
    }
   
}
.right-wrapper{
    width: 500px;
}
.right-panel{
    position: relative;
    z-index: 999;
    background: #FFF;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(244, 250, 246, 1) 50%);
}

@keyframes circleFloat {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(25px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

 .auth-form {
    width: 100%;
    max-width: 520px;
    margin: auto;
    padding: 40px;
    position: relative;
    .icon-box {
        width: 64px;
        height: 64px;
        background: hsl(var(--primary) / 0.12);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        i {
        font-size: 28px;
        color: hsl(var(--primary));
        }
    }
    a{
        text-decoration: none;
    }
    .auth-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        
        
        .method-toggle {
            display: flex;
            border-radius: 14px;
            padding: 6px;
            margin-bottom: 20px;
            button {
                flex: 1;
                border: none;
                background: transparent;
                padding: 12px;
                font-weight: 500;
                border-radius: 10px;
                cursor: pointer;
                color: #5b6672;
                }
            
            }
            button.active {
                background: hsl(var(--primary));
                color: #fff;
                border: 1px solid hsl(var(--primary));
            }
        }
        .input-group {
            position: relative;
        }
        .input-icon {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            color: #6c757d;
        }

        .form-control {
            width: 100%;
            height: 52px;
            padding-left: 44px;
            border-radius: 12px;
            border: 1px solid hsl(var(--border));
            font-size: 15px;
        }
        .otp-input {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            input {
                width: 48px;
                height: 52px;
                text-align: center;
                font-size: 20px;
                border-radius: 10px;
                border: 1px solid hsl(var(--border));
            }
        }
        .back-btn {
            background: none;
            border: none;
            color: #6c757d;
            margin-bottom: 16px;
            cursor: pointer;
        }
        .text-primary{
            color:  hsl(var(--primary))!important;
        }

        
}
.btn-primary {
    width: 100%;
    height: 52px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    &:hover{
        background: hsl(var(--primary))!important;
    }
}
@media (min-width: 350px) and (max-width: 1199px) {
    .auth-section {
        .top-logo {
            img {
                width: 200px;
            }
        }
    }
    .auth-section {
        background: #FFF;
        background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(244, 250, 246, 1) 50%);
        height: 100vh;
        .left-panel{
            padding-top: 30px;
        }

        &:after {
            display: none;
        }
        .auth-form {
            width: 100%;
            max-width: 480px;
            margin-top: 40px;
            padding: 0px;
            .auth-card{
                padding: 15px;
                .method-toggle{
                    button{
                        font-size: 14px;
                        height: 45px;
                    }
                }
            }
            .btn{
                font-size: 14px;
                height: 45px;
            }
            .form-control{
                height: 45px;
            }
        }
        .register-panel{
            margin-top: 40px;
            .btn{
                font-size: 14px;
                height: 45px;
            }
            h2{
                font-size: 28px;
            }
            .form-control{
                height: 45px;
            }
            .form-select{
                height: 45px;
            }
            .form-check-label{
                font-size: 14px;
                a{
                    font-size: 14px;
                }
            }
        }
    }
    
    

     /* LEFT PANEL */
    .left-panel {
        height: auto !important;
        min-height: auto;
        padding: 30px 20px;
        align-items: flex-start;
       
    }

    /* Branding & counters hide on small screens */
    .auth-brand,
    .bottom-content {
        display: none !important;
    }

    .top-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    /* RIGHT PANEL */
    .right-panel {
        padding: 30px 15px;
        align-items: center;
        background: none;
    }

    

    /* Headings */
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    /* Buttons */
    .btn-lg {
        padding: 12px;
        font-size: 15px;
    }

    /* OTP inputs */
    .otp-input input {
        width: 38px;
        height: 42px;
        font-size: 16px;
    }

    /* Method toggle buttons */
    .method-toggle button {
        flex: 1;
        font-size: 14px;
    }
}