.auth-page .container{
  max-width:500px;
  margin:0 auto;
}
.auth-main{
  align-items:center;
  justify-content:center;
  display:flex;
  flex-direction:column;
  padding:50px 0;
  min-height:100vh;
  max-width:500px;
  margin:0 auto;
}
.auth-logo{
  text-align:center;
  margin-bottom:2.5rem;
}
.auth-logo img{
  max-height:3.75rem;
  margin:auto;
}
.auth-main-inner{
  background-color:var(--box-background-color);
  border-radius:20px;
  width:100%;
  padding:40px 2.5rem;
  box-shadow:0 0 24px 5px rgba(0, 0, 0, .1);
}
.auth-main h3{
  text-align:center;
  font-size:1.875rem;
  font-weight:500;
  margin-bottom:0.625rem;
}
.auth-form .form-field{
  margin-bottom:1.25rem;
}
.auth-form .form-label{
  font-size:var(--font-size);
  font-weight:500;
}
.auth-form .form-group{
  position:relative;
}
.auth-form .form-control{
  height:3.125rem;
}
.auth-form .toggle-password{
  position:absolute;
  right:0.625rem;
  bottom:8px;
  font-size:var(--font-size-heading);
  cursor:pointer;
}
.auth-form .crossed-eye::after{
  content:"";
  position:absolute;
  width:0.0625rem;
  height:1.375rem;
  background:var(--font-color);
  transform:rotate(-45deg);
  bottom:0.375rem;
  right:0.4375rem;
}
.forgot-password{
  margin-top:1rem;
  display:inline-block;
  font-weight:500;
}
.auth-form .btn.btn-primary{
  display:block;
  width:100%;
}
.back-login{
  margin-top:1.125rem;
  display:flex;
  justify-content:center;
}
.back-login a{
  display:flex;
  gap:5px;
  align-items:center;
  font-weight:500;
}
.back-login a i{
  transition:0.5s;
  padding-right:0.0625rem;
  height:16px;
  display:flex;
  align-items:center;
}
.back-login:hover i{
  padding-right:0.5rem;
}
@media (max-width:767px){
  .auth-main{
    background-color:var(--box-background-color);
    height:100vh;
    overflow:auto;
    max-width:100%;
  }
  .auth-main-inner{
    padding:20px;
    box-shadow:none;
  }
  .auth-logo{
    margin-bottom:0.9375rem;
  }
  .auth-logo img{
    max-height:3.75rem;
  }
  .auth-main-inner h3{
    font-size:1.25rem;
  }
  .auth-main-inner p{
    font-size:0.875rem;
  }
  .auth-form .form-label{
    font-size:0.8125rem;
  }
  .auth-form .form-control{
    height:2.625rem;
  }
}