
body{
  position: relative;
  
  /* background-color: violet; */
  width: 100%;
  
}

.login_signup_form_wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  
  width: 100%;
  padding-bottom: 3rem;
  box-sizing: border-box;
}




.centered {
    padding-top: 200px;
    text-align: center;
}

.secret-text {
  text-align: center;
  font-size: 10rem;
  color: #fff;
  background-color: #000;
}

.login_warning_text>div{
  color: red; 
  font-size: 20px; 
  display: flex;
  align-items: center;

  
}
/* .check_mark{
  position: relative;
  top: 3px;
  background-image: url('../assets/check_1.png');
  background-size: contain;
  height: 20px;
  width: 20px; 
  display: inline-block;
  
} */

.main_page{
  
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--ysa);
  align-items: center;
  margin-top: 10rem;


}
.main_page_logo{
  width: 230px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.button_container{
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}





.login_form{
  width: 70%;
  margin-top: 5rem;
  
  
}
.login_form>*{
  margin-top: 1rem;
  font-family: var(--ysa);
}






.standard_input_wrapper{
  background-color: white;
  height: 3.5rem;
  width: 100%;
  padding: 0 10px 0 10px;
  box-sizing: border-box;
  border-radius: 5px;
  border: solid 2px var(--dark_green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:baseline;
  position: relative;
  
  
  
    
}
.standard_input_wrapper>label{
  position: absolute;
  width: 90%;
  
  margin: 0px;
  /* background-color: turquoise; */
  text-transform: uppercase;
  color: grey;
  font-size: 0.6rem;
  font-weight: 800;
  top: 20px;
  opacity: 1;
    
  
}
.standard_input_wrapper>input{
 
  position: absolute;
  /* background-color: lightslategrey; */
  line-height: 10px;
  border: none !important;
  outline: none !important;
  width: 90%;
  font-family: var(--monster);
  font-size: 1rem;
  margin: 0px;
  padding: 0px;
  bottom: 15px;
}
/* .standard_input_wrapper>input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0 30px yellow inset !important;
} */

.password_input,.pass_con_input{
  width: 85% !important;
}

.label_moveup{
  opacity: 1 !important;
  top: 8px !important;
  
    
}
.input_movedown{
    bottom: 8px !important;
}




.standard_input_wrapper>input:focus{
  border: none !important;
  outline: none !important;
}















.standard_input_wrapper>input:focus{
  outline: none;
  
}

.form_grid_section{
  margin-top: 20px;
}


.standard_form{
  /* background-color: lightblue; */
  width: 90%;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 10px;
}
.standard_form>*{
  margin-top: 1rem;
  font-family: var(--ysa);
}


#reset_email_input{
  font-family: var(--monster);
  font-size: 1rem;
}
#reset_email_input:focus{
  outline: none;
}




.form_input_error{
 color: var(--alert_error);
 font-weight: 500;
 padding-left: 5px;
 font-size: 1rem;
 margin: 0px;
 
}
.signup_input_section_pass{
  display: flex;
  flex-direction: column;
}


.radio_circle{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: solid 2px grey;
  display: flex;
  align-items:end;
}
/* .radio_circle>div:first-of-type{
  width: 5px;
  height: 20px;
  background-color: green;
  transform: rotate(-45deg);
}
.radio_circle>div:last-of-type{
  width: 5px;
  height: 40px;
  background-color: green;
  transform: rotate(45deg);
} */

.checkmark {
    width: 4px;
    height: 8px;
    border-bottom: 2px solid rgb(60, 165, 60);
    border-right: 2px solid rgb(60, 165, 60);
    transform: rotate(45deg);
    margin: 2px; /* Adjust margin as needed */
}




.pass_req{
  margin-top: 0.5rem;
}
.req_wrapper{
 display: flex;
 align-items: center;
 color: rgb(85, 85, 85);
}

.req_wrapper>*:nth-child(2){
  margin-left: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family:var(--ysa);
  text-align: center;
}

.pass_input_layout{
  display: flex;
  position: relative;

}
.eye_switch{
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 10px;
  top: 12px;
  background-color:transparent;
  border: none;
  padding: 0px;
  display: flex;
  
}
.eye_switch img{
  width: 100%;
}

.switch_text{
  font-family: var(--ysa);
  margin-top: 0.5rem; 
  font-size: 1rem; 
  font-weight: 500;
  color: rgb(92, 91, 91);
}

.dialog_backdrop{
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  
  z-index: 99;
}

.dialog_body{
  font-family: var(--ysa);
  height: 0px;
  width: 0px;
  background-color: white;
  color: rgb(64, 64, 64);
  
  box-sizing: border-box;
  position: relative;
  z-index: 500;
  border-radius: 5px;
  background-color: whitesmoke;
  overflow-x: auto;

}

 .x_wrapper{
  position: fixed;
  width: 89vw;
  height: 50px;
  display: flex !important;
  background-color: whitesmoke;
  z-index: 500;
 }
 @media screen and (min-width: 420px){
  .x_wrapper{
  width: 89vw;
 }
 }
 @media screen and (max-width: 419px){
  .x_wrapper{
  width: 87vw;
 }
 }
.x {
  position: absolute;
  width: 50px; 
  height: 50px; 
  background-color: whitesmoke;
  display: flex !important;
  align-items: center;
  justify-content: center;
  right: 0px;
  border: none;
  
}
.x:focus{
  border: none;
  outline: none;
}
.x::before,
.x::after {
  position: absolute;
  content: ''; /* Empty content for pseudo-elements */
  height: 25px; /* Adjust size */
  width: 3px; /* Adjust thickness */
  background-color: #333; /* Color of the cross lines */
}

.x::before {
  transform: rotate(45deg); /* Rotate for one line of the X */
}

.x::after {
  transform: rotate(-45deg); /* Rotate for the other line */
}
.dialog_content{
  padding: 80px 5% 80px 5%;
}
.dialog_body>*{
  display: none;
  
}



.dialog_content>h1{
  font-size: 2rem;
}
.dialog_body h5{
  font-size: 1rem;
}
.code_boxes{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  
}


.code_boxes>input{
  height: 3rem;
  width: 2rem;
  border:2px solid rgba(0, 0, 0, 0.5);
  /* border-radius: 3px; */
  font-size: 1.5rem;
  text-align: center;
  font-family: var(--monster);
  /* margin-right: 0.5rem; */
  
  
}
.code_boxes>input:focus{
  outline: none;
}


.reset_cancel_icon{
  height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 0;
  

}

.reset_cancel_icon img {
  width: 70%;
  height: 70%;
  object-fit:contain;
  position: absolute;
  bottom: 0;
  
}




.code_time_out{
  font-family: var(--open_sans); 
  font-weight: 500; 
  font-size: 15px;
  margin-top: 15px;
 
}






.alert_box_wrapper{
    position: absolute;
    top: 40px;
    border-radius: 5px;
    width: 70%;
    height: 60px;
    background-color: var(--alert_success);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    
    z-index: 120;
    
    
}
.alert_box_wrapper>h5{
    padding: 20px;
    font-family:var(--thin_serif);
    font-size: 1.1rem;
    color: white;
}
.ver_div_line{
  width: 2px;
  height: 50px;
  background-color: white;
  margin-right: 60px;
  
}

.close_icon{
  height: 100%;
  width: 60px;
  /* background-color: turquoise; */
  position: absolute;
  right: 0;
  
}

.close_icon_arm{
  position: absolute;
  left: 25px;
  top: 20px;
  width: 2px;
  height: 20px;
  background-color: var(--dark_green);
  transform: rotate(45deg);
}
.fade_in{
  opacity: 1;
}
.move_up{
  top: 50px;
}










