main {
    width: 100%;
    height: 100%;
    background-color: #fefefe;
    display: grid;
    grid-template-rows: 72px 738px repeat(auto-fill, minmax(200px, 4fr));
    grid-template-areas:
        "header"
        "signUp"
        "footer";
}



.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

    /* Hide the browser's default checkbox */
    .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.reqList .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px !important;
    width: 25px !important;    
    background-color: transparent;
    border: solid 1px #cecece;
    border-radius: 15px !important;
}


/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.reqList .container .checkmark:after {
    left: 9px !important;
    top: 5px !important;
    width: 6px !important;
    height: 11px !important;
    border: solid #4eb04e;
    border-width: 0 2px 2px 0 !important;
    -webkit-transform: rotate(45deg) !important;
    -ms-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
}




/* Login SignUp */

.loginContainer {
    background: url(../../images/backgroundSignUp.svg) no-repeat center center;
    background-size: cover;
    /*height: 882px;*/
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 550px;
}

.loginSectionContainer {
    width: 499px;
    /*height: 636px;*/
    padding: 46px 40px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.04);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 50px 0 50px 0;
}

    .loginSectionContainer h3 {
        font-size: 24px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #222;
    }

.verifyMessage {
    min-height: 51px;
    width: 100%;
    padding: 13px 0 14px 14px;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(34, 34, 34, 0.92);
    margin-top: 19px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .verifyMessage p {
        font-size: 15px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.4;
        letter-spacing: normal;
        color: #fff;
        margin-left: 8px;
        width: 100%;
    }

.closeMessage {
    width: 43px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .closeMessage:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 1px;
        height: 21px;
        background: #7e7e7e;
        ;
    }

.passwordForm {
    width: 100%;
    height: auto;
    margin-top: 25px;
}

fieldset.fieldInput:not(:first-child) {
    margin-top: 24px;
}

fieldset input,
fieldset select {
    padding: 0 35px 0 48px !important;
}

fieldset legend {
    margin-left: 35px !important;
}

.passwordReqLabel {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: #222;
    margin-top: 19px;
}

.userName::before,
.passwordField::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translate(-50%,-50%);
    background: url(../../images/email-outline-green.svg) no-repeat center center;
    background-size: contain;
    width: 18px;
    height: 14px;
}

.passwordField::before {
    background: url(../../images/lock-outline-green.svg) no-repeat center center;
    width: 14px;
    height: 19px;
    background-size: contain;
}

.reqList li {
    list-style: none;
    display: flex;
    margin-top: 17px;
}

.reqPoints.disabled {
    color: #888;
}

.loginSectionContainer .checkmark {
    height: 20px;
    width: 20px;
    top: 1px;
}

.loginSectionContainer .container {
    padding-left: 30px;
}

    .loginSectionContainer .container input:checked ~ .checkmark {
        background: #4eb04e;
        border: 1px #4eb04e;
    }

    .loginSectionContainer .container .checkmark::after {
        left: 7px;
        top: 3px;
        width: 6px;
        height: 10px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.signInBtn {
    width: 100%;
    height: 52px;
    padding: 14px 145px 15px 146px;
    border-radius: 10px;
    background-color: #4eb04e;
    border: none;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    text-align: right;
    color: #fff;
    margin-top: 40px;
    cursor: pointer;
}

    .signInBtn.disable {
        background-color: #e3e3e3;
        color: #aeaeae;
        pointer-events: none;
    }

.menuContainer {
    box-shadow: 0 0 12px 0 rgba(213, 218, 233, 0.6);
}

.passwordEnable.enabled {
    background: url(../../images/eye-line.svg) no-repeat center center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 2;
    transform: translate(0,-50%);
}

.passwordEnable {
    background: url(../../images/eye-line-gray.svg) no-repeat center center;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0,-50%);
    cursor: pointer;
    z-index: 2;
}

/* Account ready message style starts */
.accountReadyMessageContainer {
    width: 499px;
    height: 636px;
    border-radius: 10px;
    box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.04);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    user-select: none;
}

    .accountReadyMessageContainer img {
        width: 200px;
        height: 200px;
        object-fit: contain;
        margin-bottom: 60px;
    }

    .accountReadyMessageContainer h3 {
        font-size: 24px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #222;
        margin-bottom: 6px;
    }

    .accountReadyMessageContainer p {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: center;
        color: #909090;
        max-width: 400px;
    }

    .accountReadyMessageContainer p.redirectText {
        margin-top: 100px;
    }

        .accountReadyMessageContainer p.redirectText a {
            font-weight: 500;
            text-decoration: none;
            color: #4eb04e;
            cursor: pointer;
        }
/* Account ready message style ends*/

/* Already registered starts */
.aRContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .aRContainer img {
        width: 389px;
        height: 344px;
        object-fit: contain;
        margin-bottom: 35px;
    }

.textTitle {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.52px;
    color: #222;
    margin-bottom: 5px;
}

.textDesc {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    text-align: center;
    color: #777;
    max-width: 704px;
}

    .textDesc span {
        font-weight: 500;
        color: #222;
    }

.btnSet {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

    .btnSet a {
        width: max-content;
        height: 48px;
        padding: 14px 39px 13px 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.1px;
    }

.mainBtn {
    background-color: #4eb04e;
    color: #fff;
}

.forgotPass {
    border: solid 1px #4eb04e;
    background-color: #fff;
    color: #4eb04e;
}
/* Already registered ends */

/* Link expied starts */
.linkExpired {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .linkExpired img {
        width: 409px;
        height: 367px;
        object-fit: contain;
        margin-bottom: 35px;
    }

.textTitle {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.52px;
    color: #222;
    margin-bottom: 5px;
}

.textDesc {
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: normal;
    text-align: center;
    color: #777;
    max-width: 546px;
}

/* Link expied  ends */

/* Account exist starts */
.accountExitContainer {
    width: 499px;
    height: 583px;
    border-radius: 10px;
    box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.04);
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .accountExitContainer img {
        width: 160px;
        height: 142px;
        object-fit: contain;
        margin-bottom: 45px;
    }

    .accountExitContainer h3 {
        font-size: 24px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #222;
        margin-bottom: 6px;
    }

    .accountExitContainer p {
        font-size: 16px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: center;
        color: #909090;
        max-width: 419px;
    }

.accountExitContainer .mainDesc {
    margin-bottom: 20px;
}

.accountExitContainer p span {
    font-weight: 500;
    color: #222;
}

.accountExitContainer .mainBtn {
    width: max-content;
    height: 48px;
    padding: 14px 24px 13px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    background-color: #4eb04e;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    color: #fff;
    text-decoration: none;
    margin-top: 50px;
    cursor: pointer;
}
/* Account exist ends */
.cancelBtn {
    border-radius: 10px;
    border: solid 1.2px #388438;
    background-color: #fff;
    color: #388438;
    width: max-content;
    height: 48px;
    padding: 14px 24px 13px;
    border-radius: 10px;
    display: flex;
    align-items: center;    
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-decoration: none;
    margin-top: 50px;
    cursor: pointer;
}
.signupFrm {
    display: flex;
    flex-direction: row;
    gap: 15px;
}