.signInMain {
    border: 1px solid #2E3C46;
    width: 100%;
    max-width: 820px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(180deg, #121921 0%, #242D38 100%), linear-gradient(0deg, #2E3C46, #2E3C46);
    border-radius: 10px;
    position: relative;
    color: white;
    z-index: 9999;
}

.signUpMain {
    display: none;
    border: 1px solid #2E3C46;
    width: 120%;
    max-width: 820px;
    margin: 50px auto;
    padding: 20px;
    background: linear-gradient(180deg, #121921 0%, #242D38 100%), linear-gradient(0deg, #2E3C46, #2E3C46);
    border-radius: 10px;
    position: relative;
    color: white;
    z-index: 9999;
}

.headline {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: larger;
    margin-top: 0;
    margin-bottom: 1em;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #2E3C46;
    margin: 10px 0;
    position: absolute;
    top: 12%;
    left: 0%;
}

.signIn,
.signUp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.right img {
    max-height: 20vh;
    width: auto;
    margin-bottom: 20px;
    padding: 1em;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.left {
    margin-top: 1em;
    max-width: 396px;
    width: 100%;
    margin-right: 2em;
}

.Emailfield,
.Passfield,
.Namefield {
    margin-top: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 5px;
    width: 100%;
    background-color: white;
    border-radius: 4px;
}

.Emailfield input,
.Passfield input,
.Namefield input {
    width: calc(100% - 40px);
    padding: 8px;
    box-sizing: border-box;
    outline: none;
    border: none;
    color: black;
    background-color: transparent;
}

.Emailfield img,
.Passfield img {
    margin: 0 10px;
}

.signInButton,
.generateOTP,
.resendOTP,
.signupBtn {
    text-align: center;
    width: calc(100% - 20px);
}

.generateOTP {
    margin-bottom: 10%;
}

.errorMsgCont,
.errorMainMsgCont,
.errorMainMsgBackCont {
    border: 1px solid rgb(255, 0, 0);
    background: rgb(134, 0, 0);
    text-align: center;
    padding: 3%;
}

.errorMsg,
.errorMainMsg,
.errorMainMsgBack {
    font-size: 26px;
}

.errorMsgCont,
.errorMainMsgCont,
.OTPCont {
    /* display:none; */
}

.resendOTP,
.signupBtn {
    margin-bottom: 5%;
}

.signInButton button,
.generateOTP button,
.resendOTP button,
.signupBtn button {
    padding: 12px;
    cursor: pointer;
    background: linear-gradient(137.17deg, #5CE1E6 0.07%, #00666A 98.89%);
    border: none;
    color: white;
    width: 30.5em;
    margin-top: 1.5em;
    border-radius: 4px;
}

.text1,
.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: small;
    color: #FFFFFFA6;
}

.signup-link span {
    text-decoration: none !important;
    color: white;
    cursor: pointer;
    margin-left: 0.2em;
}

.social-icon {
    margin-top: 15px;
    text-align: center;

}

.social-icon img {
    margin: 0 10px;
    cursor: pointer;
}

.signInMainPopup {
    display: none;

    position: fixed;
    top: 20vh;
    left: 50%;
    transform: translate(-50%, 0%);
    /*left: 50%;
    top: 50%;
    transform: translate(-50%, -10%);*/
    padding: 20px;
    z-index: 9998;
}

.signInMainTransBG {
    width: 100vw;
    position: fixed;
    left: 50%;
    top: -50%;
    transform: translate(-50%, 0%);
    /*top: 0%;
    transform: translate(-50%, 0%);*/
    background-color: #000000b4;
    z-index: 9998;
    height: 200vh;
}

/* OTP filed css - start - 13/2/24 */
.OTPcont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.OTPfield {
    width: 33px;
    border: none;
    border-bottom: 3px solid rgba(0, 0, 0, 0.5);
    margin: 0 10px;
    text-align: center;
    font-size: 26px;
    /* cursor: not-allowed;
    pointer-events: none; */
}

.OTPfield:focus {
    border-bottom: 3px solid #2FA5AA;
    outline: none;
}

.OTPfield:nth-child(1) {
    cursor: pointer;
    pointer-events: all;
}

/* OTP filed css - end - 13/2/24 */

.close-popup-icon {
    width: 2%;
    float: right;
    cursor: pointer;
}


#phoneOtp {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    min-width: 350px;
    z-index: 99;
    background-color: rgba(0, 0, 0, .9);
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 24px 0px;
}

.checked,
.error {
    display: none
}

.verify {
    display: flex;
    align-items: center;
    flex-basis: 100%;
    justify-content: space-between
}

@media screen and (max-width: 768px) {
    .verify {
        display: block;
    }

    .verify input {
        padding: 5px 0;
    }

    input {
        font-size: 12px !important;
    }
}