/* Google Font Link */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Ensure positioning context for pseudo-element */
    background-image: url('../Images/cusbg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    /* Create a pseudo-element to overlay the background with opacity */
    body::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, .9);
    }

.container {
    position: relative;
    max-width: 1080px;
    width: 100vw;
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    perspective: 2700px;
}

    .container .cover {
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        width: 50%;
        z-index: 98;
        transition: all 1s ease;
        transform-origin: left;
        transform-style: preserve-3d;
    }

    .container #flip:checked ~ .cover {
        /*transform: rotateY(-180deg);*/
        transform: translateX(-100%);
    }

    .container .cover .front,
    .container .cover .back {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

.cover .back {
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover::before,
.container .cover::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: blue;
    opacity: 0.8;
    z-index: 12;
}

.container .cover::after {
    opacity: 0.3;
    transform: rotateY(180deg);
    backface-visibility: hidden;
}

.container .cover img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 10;
}

.container .cover .text {
    position: absolute;
    z-index: 130;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover .text .text-1,
.cover .text .text-2 {
    font-size: 26px;
    font-weight: 600;
    color: #C6E2EE;
    text-align: center;
}

.cover .text .text-2 {
    font-size: 15px;
    font-weight: 500;
}

.container .forms {
    height: 100%;
    width: 100%;
    background: #fff;
}

.container .form-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-content .login-form,
.form-content .signup-form {
    width: calc(100% / 2 - 25px);
}

.forms .form-content .title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

    .forms .form-content .title:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 25px;
        background: #7d2ae8;
    }

.forms .signup-form .title:before {
    width: 20px;
}

.forms .form-content .input-boxes {
    margin-top: 10px;
}

.forms .form-content .input-box {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.form-content .input-box input,
.form-content .input-box select {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    padding-left: 30px;
    font-size: .85rem;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .form-content .input-box input:focus,
    .form-content .input-box input:valid,
    .form-content .input-box select:focus,
    .form-content .input-box select:valid {
        border-color: #7d2ae8;
    }

    /* Add a custom arrow icon for the dropdown */
    .form-content .input-box select:after {
        content: '\25BC'; /* Down arrow character */
        position: absolute;
        right: 10px;
        top: calc(50% - 7px); /* Center the arrow vertically */
        color: #7d2ae8;
        pointer-events: none; /* Allow clicks to pass through to the select */
        font-size: 12px;
    }

.form-content .input-box i {
    position: absolute;
    color: #7d2ae8;
    font-size: 17px;
}

.forms .form-content .text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

    .forms .form-content .text a {
        text-decoration: none;
    }

        .forms .form-content .text a:hover {
            text-decoration: underline;
        }

.forms .form-content .button {
    color: #fff;
    /*margin-top: 10px;*/
}

    .forms .form-content .button input {
        color: #fff;
        background: #7d2ae8;
        border-radius: 6px;
        padding: 0;
        cursor: pointer;
        transition: all 0.4s ease;
    }

        .forms .form-content .button input:hover {
            background: #5b13b9;
        }

.forms .form-content label {
    color: #5b13b9;
    cursor: pointer;
}

    .forms .form-content label:hover {
        text-decoration: none;
    }

.forms .form-content .login-text,
.forms .form-content .sign-up-text {
    text-align: center;
    /*margin-top: 25px;*/
}

.container #flip {
    display: none;
}

@media (max-width: 730px) {
    .container .cover {
        display: none;
    }

    .form-content .login-form,
    .form-content .signup-form {
        width: 100%;
    }

    .form-content .signup-form {
        display: none;
    }

    .container #flip:checked ~ .forms .signup-form {
        display: block;
    }

    .container #flip:checked ~ .forms .login-form {
        display: none;
    }


    /*.forms .form-content .withverify{
  display: inline-block;
  align-items: center;
  height: 50px;
  width: 100%;
  margin: 10px 0;
  position: relative;
}*/

}


.highlight-red {
    color: red; /* Set the color to red */
}

/*OTP CSS*/
.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .otp-field input {
        height: 45px;
        width: 42px;
        border-radius: 6px;
        outline: none;
        font-size: 1.125rem;
        text-align: center;
        border: 1px solid blue;
    }

        .otp-field input:disabled {
            border: 1px solid red;
        }

        .otp-field input:focus {
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
        }

        .otp-field input::-webkit-inner-spin-button,
        .otp-field input::-webkit-outer-spin-button {
            display: none;
        }

.resend {
    font-size: 12px;
}

.footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: black;
    font-size: 12px;
    text-align: right;
    font-family: monospace;
}

    .footer a {
        color: black;
        text-decoration: none;
    }

#verification-section, #Pin-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Adjust opacity and color as needed */
    z-index: 999; /* Ensure it's above other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}

#btnaspverify, #noMiddleName {
    height: 70%;
    max-width: fit-content;
    outline: none;
    border: none;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#lblVerified {
    position: absolute;
    top: 100%;
    right: 10px;
    transform: translateY(-100%);
    color: #888;
}

#btnBckSgnup, #BtnGoToLogin {
    text-decoration: none;
    color: blue;
}


#loadingscreen {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=80);
    opacity: 0.80;
    -moz-cpacity: 0.80;
}

#theprogress {
    /*background-color: blue;*/
    width: 110px;
    height: 24px;
    text-align: center;
    filter: Alpha(Opacity=100);
    opacity: 1;
    -moz-cpacity: 1;
}

#modelprogress {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -55px;
}

.radio-group-container {
    display: flex;
    justify-content: center;
}

.radio-group {
    display: flex;
    gap: 20px;
}

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        font-family: Arial, sans-serif;
        font-size: 19px;
        margin-right: 10px;
        transition: font-size 0.3s, transform 0.3s; /* Add transition for smooth resizing */
    }

    .radio-group input[type="radio"] {
        display: none;
    }

        .radio-group input[type="radio"]:checked + label,
        .radio-group label:hover {
            font-size: 30px; /* Increase label font size when checked or hovered */
        }

            .radio-group input[type="radio"]:checked + label i,
            .radio-group label:hover i {
                font-size: 50px; /* Increase icon size when checked or hovered */
            }

            .radio-group input[type="radio"]:checked + label .male-icon,
            .radio-group label:hover .male-icon {
                color: blue;
            }

            .radio-group input[type="radio"]:checked + label .female-icon,
            .radio-group label:hover .female-icon {
                color: pink;
            }

              .rsamibg-gradient-primary {
            background-color: #2e22ff;
            background-image: linear-gradient(180deg,#0000ff 10%,#ffffff 100%);
            background-size: cover;
        }


        .custom-shadow {
            box-shadow: 0 0 1rem rgba(0, 0, 255, 0.15) !important; /* Blue shadow */
        }

        .navbar-center {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-grow: 1;
        }

        #loadingscreen {
            position: fixed;
            z-index: 99;
            top: 0px;
            left: 0px;
            background-color: #FFFFFF;
            width: 100%;
            height: 100%;
            filter: Alpha(Opacity=80);
            opacity: 0.80;
            -moz-cpacity: 0.80;
        }

        #theprogress {
            /*background-color: blue;*/
            width: 110px;
            height: 24px;
            text-align: center;
            filter: Alpha(Opacity=100);
            opacity: 1;
            -moz-cpacity: 1;
        }

        #modelprogress {
            position: absolute;
            top: 50%;
            left: 50%;
            margin: -11px 0 0 -55px;
        }
     