
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: calibri;
}



/*----------------------------------*\
    #LOGIN-PAGE START
/*----------------------------------*/
.main-container {
    height: 100vh;
    display: grid;
    place-content: center;
    /* background-color: #662270; */
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    /* background-image: url('../images/landing-page-pattern.svg'); */
    background-size: cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Container styling */
.heading-section {
    display: flex;
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px;
    flex-direction: column;
}



/* Image styling */
.heading-section img {
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes the image round */
    margin-bottom: 5px;
}
/* Heading styling with gradient color */
.heading-section h2 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
    background: linear-gradient(-225deg, #5D9FFF 0%, #B8DCFF 48%, #6BBBFF 100%);
    /* background: linear-gradient(to top, red, yellow); */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
}

.remove-arrow::-webkit-inner-spin-button, 
.remove-arrow::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

/* Countdown styling */
#countdown {
    color: #ececec;
    font-weight: bold;
    margin-top: 10px; /* Add margin to separate from the main box */
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap; /* Allow units to wrap to the next line if needed */
    justify-content: center;
}


/* Styling for the "Days", "Hours", "Minutes", "Seconds" text */
.calender {
    font-size: 12px;
    color: #ffffff; /* White */
    margin-top: 5px; /* Add some space between the number and the text */
    text-align: center; /* Center the text */
}


/* Individual units styling */
#days,
#hours,
#minutes,
#seconds {
    margin: 5px; /* Adjust margin for better spacing */
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #24292D;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

/* Individual units styling */
#days {
    color: #ffcc00; /* Yellow */
}

#hours {
    color: #ff6666; /* Red */
}

#minutes {
    color: #66ccff; /* Blue */
}

#seconds {
    color: #66ff99; /* Green */
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .heading-section {
        flex-direction: column; /* Change flex direction for smaller screens */
        align-items: center; /* Center items vertically */
    }

    .heading-section img {
        margin-bottom: 10px; /* Add margin at the bottom for spacing */
    }

    .heading-section h2 {
        margin-left: 0; /* Remove left margin for smaller screens */
        font-size: 18px;
        margin-bottom: 5px;
    }

    /* Countdown styling */
#countdown {
    font-size: 15px;

}

    /* Individual units styling */
#days,
#hours,
#minutes,
#seconds {
    margin: 5.5px; /* Adjust margin for better spacing */
    align-items: center;
}
}

.login-content{
    display: flex;
    justify-content: center;
  
   
}

.container-1{
    width: 40%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 6px 10px #0000005b;
    background-color: #201239;
  
    
}

.img-box{
    width: 100%;
}

.img-box img{
    width: 100%;
    height: 473px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.login-image{
    background-color: #201239;
}
.container-2{
    width: 40%;
    padding: 10px 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0px 6px 10px #0000005b;

    background-color: #fff;
}


.top-title{
    margin: 10px 0;
}

.top-title h2{
    font-size: 24px;
    font-weight: 400;
}

.input-login{
    margin: 0 0 8px 0;
}

.input-login label,input{
    display: block;
}

.input-login label{
    font-size: 16px;
}

.input-login input{
    width: 100%;
    margin: 0 0 5px 0;
    padding: 12px 8px;
    border-radius: 5px;
    outline: 3px ;
    border: 1px solid #e2e8f0;
}

.input-login input:focus {
    outline: 2px solid #ac94faa8;
    transition: .2s;
}

.login-button{
    margin: 15px 0;
}

.login-button a{
    width: 100%;
    color: #fff;
    padding: 10px 10px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    background-color: #201239;
}

.login-button a:hover{
    background-color: #5f2eb5;
}

.login-button a:focus{
    outline: 3px solid #d4bbffce;
}

.otp-input input{
    width: 100%;
    padding: 12px 8px;
    border-radius: 5px;
    outline: 3px ;
    border: 1px solid #e2e8f0;
}

.otp-input input:focus {
    outline: 2px solid #ac94faa8;
    transition: .2s;
}

.empty-box{
    margin: 20px 0;
    border-top: 1px solid #c2c4c6;
}

.forgot-button{
    margin-top: -5px;
}

.forgot-button a{
    color: #7e3af2;
    display: block;
    margin: 5px 0;
    text-decoration: none;
}

/*----------------------------------*\
    #FORGOT-PAGE START
/*----------------------------------*/
.img-box-2{
    width: 100%;
}

.img-box-2 img{
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/*----------------------------------*\
    #CREATE_ACCOUND-PAGE START
/*----------------------------------*/
.create-container-1{
    width: 50%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 6px 10px #0000005b;
    background-color: #fff;


  
}



.create-container-1 .img-box{
    width: 100%;
    height: 100%;
    background-color: #201239;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    
}

.create-container-1 .img-box img{
    width: 450px;
    height: 350px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  
}

.create-container-2{
    width: 55%;
    padding: 10px 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0px 6px 10px #0000005b;
    background-color: #fff;
}
.input-container{
  
    padding: 10px 10px 0 10px;
    border-radius: 10px;
    margin: 5px 0;
}

.input-container-2{
    border: 1px solid #e2e2e2;
    padding: 10px;
    border-radius: 10px;
    margin: 5px 0;
    box-shadow: 1px 1px 10px #1111113a;
}

.input-file {
    display: flex;
    flex-direction: column;
    margin: 0 0 8px 0;
    
}

.inline-box{
    display: flex;
    justify-content: space-between;
}


.input-file label {
    font-size: 16px;
    /* Remove text-align property */
    /* text-align: left; */
    /* Use flexbox to align the label to the left */
    align-self: flex-start;
}
.input-file input[type="file"]{
    width: 70%;
    margin: 0 0 5px 0;
    padding: 9px 8px;
    border-radius: 5px;
    outline: 3px ;
    border: 1px solid #e2e8f0;
}

.input-file input[type="password"] {
    width: 100%;
    margin: 0 0 5px 0;
    padding: 12px 8px;
    border-radius: 5px;
    outline: 3px ;
    border: 1px solid #e2e8f0;
    /* Adjust input alignment */
    /* text-align: right; */
}

.input-file input:focus {
    outline: 2px solid #ac94faa8;
    transition: .2s;
}

.verify-content{
    display: flex;
    justify-content: space-between;
}

.verification-btn {
    background-color: #201239;
    color: #fff;
    width: 100%;
    padding: 13px 21px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.verification-btn:hover {
    background-color: #5f2eb5;
}

.chekbox-button{
    display: flex;
    margin-top: 15px;
    margin-bottom: -10px;
}

.chekbox-button input{
    margin-right: 5px;
}

.chekbox-button span{
    text-decoration: underline;
}






.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.otp-Form {
    position: absolute;
    top: 50%;
    left: 50%;
    gap: 20px;
    width: 250px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background-color: rgb(255, 255, 255);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.082);
}

  .mainHeading {
    font-size: 1.1em;
    color: rgb(15, 15, 15);
    font-weight: 700;
  }
  
  .otpSubheading {
    font-size: 0.7em;
    color: black;
    line-height: 17px;
    text-align: center;
  }
  
  .inputContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  
  .otp-input {
    background-color: rgb(228, 228, 228);
    width: 30px;
    height: 30px;
    text-align: center;
    border: none;
    border-radius: 7px;
    caret-color: rgb(127, 129, 255);
    color: rgb(44, 44, 44);
    outline: none;
    font-weight: 600;
  }
  
  .otp-input:focus,
  .otp-input:valid {
    background-color: rgba(127, 129, 255, 0.199);
    transition-duration: .3s;
  }
  
  .verifyButton {
    width: 100%;
    height: 30px;
    border: none;
    background-color: rgb(127, 129, 255);
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition-duration: .2s;
  }
  
  .verifyButton:hover {
    background-color: rgb(144, 145, 255);
    transition-duration: .2s;
  }
  
  .close {
    position: absolute;
    top: 5px;
    right: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.171);
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    border: none;
    color: black;
    font-size: 1.1em;
    cursor: pointer;
  }
  
  .resendNote {
    font-size: 0.7em;
    color: black;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  
  .resendBtn {
    background-color: transparent;
    border: none;
    color: rgb(127, 129, 255);
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
  }


.anc-button {
    width: 100%;
    color: #fff;
    padding: 10px 10px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    background-color: #201239;
    outline: none;
    border: 0;
    cursor: pointer;
}
.anc-button:hover{
    background-color: #5f2eb5;
}
.anc-button:focus{
    outline: 3px solid #d4bbffce;
}

/*======================== media-query start =============================*/

@media (max-width:755px){

    .login-content{
        flex-direction: column;
    }

    .container-1,.container-2{
        width: 340px;
    }

    .forgot-bg{
        background: transparent;
    }

    .container-2{
        border-top-right-radius: 0px; 
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .img-box-2 img{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }

    .container-1{
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
    }

    .login-image img{
        height: 300px;
    }

    .create-container-1{
        display: none;
    }
    
    .creat-content{
        flex-direction: row;
    }

    .create-container-2{
        width: 90%;
        border-radius: 20px;
    }    

}

@media (max-width: 1020px){

    .create-container-2{
        padding: 10px 15px;
    }

    .create-image img{
        width: 300px;
    }
}
