.regiser_form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.reg_input_box, .reset_input_box{
	border-radius: 5px;
	min-height: 45px;
	width:100%;
	
}
.reset_input_box{
	margin: 12px 0 0 0;
}
.register_title, .reset_title{
	font: normal normal bold 20px Helvetica Neue;
    color: #555454;
}
.register_txt{
	width: 30%;
	font: normal normal bold 19px Helvetica Neue;
    color: #555454;
    padding: 6px 0 6px 0px;
    text-align: left;
}

.register_btn {
   margin: 13px 0px 13px 0;
    color: white;
    background: var(--color--main) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    font: normal normal bold 24px Helvetica Neue;
    letter-spacing: 2.24px;
    text-align: center;
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 50px;
}

.reset_btn {
	margin: 20px 0px 13px 0;
    color: white;
    background: var(--color--main) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    font: normal normal bold 24px Helvetica Neue;
    letter-spacing: 2.24px;
    text-align: center;
    width: auto;
    height: 100%;
    border: 0;
    min-height: 50px;
}

.register_popup, .reset_popup {
	position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    color: white;
    font-size: 3vw;
    z-index: 130;
}

.reset_popupBox{
    width: 45%;

    position: relative;
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register_popupBox{
    width: 45%;
    height: 84vh;
    position: relative;
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register_popupBox .content_st {
	    flex: 0 0 85%;
    position: relative;
    text-align: center;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 90%;
    overflow-y: auto;
    height: 90%;
    padding: 10px 15px 0 15px;
    margin: 5px;
    font-size: 18px;
    /* flex: 1 1 100%; */
    color: black;
}
.register_popupBox .content_st > p:first-of-type{
text-align: center;
}
.register_popup.hidden, .reset_popup.hidden {
	display: none;
}
.register_popup_option , .reset_popup_option{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.register_popup_option.hidden, .reset_popup_option.hidden {
	display: none;
}


.login_txt{
	color: var(--color--main);
}

.input_part{
    display: flex;
    flex-direction: row;
    padding: 10px 0px 15px 0px;
}

.checkbox{
	    margin: 0 15px 0 0;
}
.text_left{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}

.margin_top{
	    margin-top: 20px;
}
.close_reg_img, .close_reset_img{
	width: 4%;
    height: 15%;
    background-image: url(../../img/close_img.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    left: 2%;
    top: -50%;
    z-index: 131;
	
}