body {
    font-family: Montserrat;
}

.register_wrapper {
    height: 100vh;
    overflow: hidden;
}

.register_wrapper .register_right {
    padding: 52px 84px;
    overflow: auto;
}

.register_wrapper .register_right .header {
    font-weight: 600;
    font-size: 32px;
    color: #9e0a1a;
    line-height: 38.4px;
    margin-bottom: 1rem;
}

.register_form .form_item {
    margin-bottom: 20px;
}

.register_form .form_item .item_label {
    font-weight: 500;
    font-size: 16px;
    line-height: 20.8px;
    color: #004da9;
    margin-bottom: 12px;
}

.register_form .form_item .item_input {
    padding: 12px;
    color: #454545;
    border-radius: 2px;
    border: 0.5px solid var(--neutral-09);
    line-height: 22.4px;
}

.register_form .form_item .item_input::placeholder {
    color: var(--neutral-09);
}

.register_form .form_item .item_input.invalid {
    border: 0.5px solid red;
}

i.toggle-password {
    right: 0.75rem;
    color: var(--neutral-07);
}
.toggle-password:hover {
  color: #554646;
  cursor: pointer;
}
.form_item .checkbox_wrapper .term_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.term_checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid green;
}

input ~ .term_checkmark {
    background-color: #ffffff;
}

input:checked ~ .term_checkmark {
    background-color: #ffffff;
}

.term_checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

input:checked ~ .term_checkmark::after {
    display: block;
}

.term_checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid green;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.term_label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    color: #666666;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.register_button {
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.common-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    color: #4d4d4d;
}

.login_link {
    font-weight: 600;
    line-height: 19.2px;
    color: #004da9;
}

.other_regist_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #666666;
}

#google-icon {
    background: url(https://d2k1ftgv7pobq7.cloudfront.net/meta/c/p/res/images/8215f66…/sign-in-with-google.svg)
        0 50% no-repeat;
}

.icon {
    display: inline-block;
    width: 29px;
    height: 29px;
    margin-right: 10px;
}

.btn_other_login .text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19.2px;
    color: #1976d2;
}

.btn_other_login {
    padding: 12px 24px;
    border-radius: 4px;
    border: 1px solid #1976d2;
    background-color: inherit;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-decoration: none;
    align-items: center;
}

.left_banner_image {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 1rem 0;
    list-style-type: none;
    position: absolute;
    bottom: 0;
    justify-content: center;
    width: 100%;
}

.slick-dots li {
    margin: 0 0.25rem;
}

.slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #e6e6e6;
    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: #9e0a1a;
    width: 3rem;
    border-radius: 15px;
}

.slick_group_text {
    position: absolute;
    bottom: 70px;
    padding: 0px 62px;
}

.slick_group_text h3 {
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 32px;
    line-height: 38.4px;
}

.slick_group_text h2 {
    text-align: center;
    color: #ffd601;
    font-weight: 600;
    font-size: 48px;
    line-height: 57.6px;
    margin-bottom: 20px;
}

.slick_group_text p {
    text-align: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.2px;
}

.form_item .error_text {
    color: red;
    font-size: 13px;
}

.checkbox_wrapper .term_link {
    text-decoration: none;
    color: #004da9;
}

/* Student Information Start*/

.student-information {
    min-height: 100vh;
    padding-top: 39px;
    background: linear-gradient(
            0deg,
            rgba(0, 77, 169, 0.5) 0%,
            rgba(0, 77, 169, 0.5) 100%
        ),
        url("/public/img/user/student_infomation_bg.jpeg"),
        lightgray 50% / cover no-repeat;
}

.student-information-wrap {
    max-width: 756px;
    padding: 1.5rem 3.75rem;
}

.student-information-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
}

.student-information-description {
    color: var(--neutral-05);
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: capitalize;
}

.input-item-wrap:not(:last-child) {
    margin-bottom: 1.5rem;
}

.input-item-wrap label {
    color: var(--blue);
    font-weight: 500;
    line-height: 1.5rem;
    text-transform: capitalize;
    margin-bottom: 0.75rem;
}
.input-item-wrap select,
.input-item-wrap input {
    padding: 0.75rem;
    color: var(--neutral-05);
    line-height: 1.5rem;
    border-radius: 2px;
    border: 0.5px solid var(--neutral-09);
}

.btn-save-infomation {
    margin-top: 3rem;
    padding: 0.75rem 2rem;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    text-transform: capitalize;
}
.student-information-content input::placeholder {
  color: var(--Neutral09, #CCC);
}
.requireStar{
  color: var(--red-main, #CC3A3D);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600 !important;
}

/* Student Information End*/


.modal-open {
    padding-right: unset !important;
}
