
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;}
.register-model{
  z-index: 95;
width: 100%;
height: 360px;
border-radius: 5px;

background-position: 0 0;
margin: auto;
background-repeat: no-repeat;
background-color: #edf1f4;
position: relative; 
-webkit-box-shadow: 0 0 12px 6px rgba(0,0,0,0.05),0 3px 6px rgba(0,0,0,0.15);
-moz-box-shadow: 0 0 12px 6px rgba(0,0,0,0.05),0 3px 6px rgba(0,0,0,0.15);
box-shadow: 0 0 12px 6px rgba(0,0,0,0.05),0 3px 6px rgba(0,0,0,0.15);
display: grid;
grid-template-columns: 45% calc(55% - 20px);
max-width: 800px;
gap: 20px;
padding: 0 20px 0 35px;
align-items: center;
}
.register-model .alert {
  margin-top: 10px;
}

.register-model .forget-link {
  margin: 30px 0;
  color: var(--pg);
  text-align: right;}

.register-model .info>.f-start {
  gap: 20px;
  margin-bottom: 20px;
}
.register-model .info>.f-start h4{
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}
.register-model .info>.f-start p{
  font-size: 16px;
  color: #555;
  line-height: 1;
}
.register-model .info>.f-start i{
  background-position: 4px 116px;
  height: 63px;
  min-width: 65px;
  max-width: 65px;
}
.register-model .info>.f-start i.saved{
  background-position: -59px 116px;
}
.register-model .info>.f-start i.noti{
  background-position: -130px 116px;
}

.register-model .col {
  transform: scale(0);
  display: none;
  height: fit-content;
  transition: 0.3s ease;
  width: 100%;
  padding: 20px;
}

.register-model .col.show {
  transform: scale(1);
  display: block;
}

.register-model .head {
  gap: 20px;
  border-bottom: 1px solid #a1a1a1;
}

.register-model .link {
  font-size: 25px;
  padding: 15px 25px;
  cursor: pointer;
  white-space: nowrap;
  text-transform: capitalize;
}

.register-model .link.active-link {
  background: #111;
  color: #fff;
 
}
.register-model  .close_btn{
  color: #222;
cursor: pointer;
font-size: 30px;
line-height: 0;
transition: 0.3s ease;
padding: 10px;
}

.register-model .popup-content {
  overflow: hidden;
  background: #fff;
border-radius: 5px;
margin: -20px 0;
  height: fit-content;
  box-shadow: 0 0 12px 6px rgba(0,0,0,0.05),0 3px 6px rgba(0,0,0,0.15);
}

.register-model .popup-content .row {
  width: 300%;
  display: grid;
  grid-template-columns: repeat(2, 100%);
  transition: ease 0.3s;

}


.userAuthIcons {
  background-image: url("/static/img/login.png");}   


  .code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
  }
  
  .code {
    border-radius: 5px;
    font-size: 45px;
    height: 80px;
    width: 70px;
    border: 1px solid #eee;
   
    margin: 0 12px;
    text-align: center;
    font-weight: 300;
  }
  
  
  
  .code:valid {
    border-color: #3498db;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.25);
  }
  .code-form  {
    width: fit-content;
  margin: -30px auto 0;
  border: 2px solid #aad2f4;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  }
  .code-form  .btn{
    width: fit-content;
    margin: 30px auto 0 !important;
    background: #111;
    color: #fff;
    text-transform: capitalize;
letter-spacing: 0.3px;
  }
  .code-form  .btn:hover{
  
  opacity: 0.8;
  }
  .code-form  .btn:active{
   box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.137);
  }
@media (max-width:810px) {
  .register-model{
    grid-template-columns: 1fr;
    height: fit-content;
    max-width: 400px;
    padding: 3px;

  }
  .register-model .info {
  display: none;}
}