/*****************************
Authentification
*****************************/

.login-posly {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
background-position: center;
padding: 30px 12px;
background: -webkit-gradient(linear, left top, right top, from(hsl(171deg, 36%, 15%)), to(hsl(226deg, 19%, 21%)));
background: linear-gradient(90deg,hsl(171deg,36%,15%) 0,hsl(226deg,19%,21%) 100%);
}
.auth-logo .logo-dark {
    display: block;
}
.auth-logo .logo-dark img
{
	width: 100%;
    height: auto;
    max-width: 250px;
}

.login-posly .logo {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  width: 98px;
  margin-left: auto;
  margin-right: auto; }
.login-posly .login-main {
 width: 550px;
    padding: 3.75rem;
    border-radius: 0.35rem;
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .05);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .05);
    margin: 0 auto;
    background-color: #fff; }
  @media only screen and (max-width: 575px) {
    .login-posly .login-main {
      width: auto;
      padding: 20px; } }
  .login-posly .login-main .theme-form h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #5d7186;
    text-transform: uppercase;
    text-align: center; }
  .login-posly .login-main .theme-form p {
       margin-bottom: 1.875rem;
    font-size: 0.875rem;
    color: #687d92;
    text-align: center;}
  .login-posly .login-main .theme-form .form-group {
    position: relative; }
    @media only screen and (max-width: 575px) {
      .login-posly .login-main .theme-form .form-group {
        margin-bottom: 5px !important; } }
    .login-posly .login-main .theme-form .form-group label {
      font-size: 14px;
      letter-spacing: 0.4px;
      position: relative; }
    .login-posly .login-main .theme-form .form-group input {
      background-color: rgba(var(--bs-light-rgb),var(--bs-bg-opacity));
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
    padding-top: .625rem !important;
    padding-bottom: .625rem !important;
	  }
	  
	  .btn-primary
	  {
		  padding-top: .625rem !important;
    padding-bottom: .625rem !important;
	  }
	  
	  
    .login-posly .login-main .theme-form .form-group .checkbox input[type="checkbox"] {
      opacity: 0; }
    .login-posly .login-main .theme-form .form-group .checkbox label {
      padding-left: 10px;
      margin-top: 10px;
      font-size: 14px;
      margin-left: 16px; }
  .login-posly .login-main .theme-form .link {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 14px; }
    @media only screen and (max-width: 575px) {
      .login-posly .login-main .theme-form .link {
        position: unset; } }

.checkbox label::before {
content: "";
display: inline-block;
position: absolute;
width: 19px;
height: 19px;
left: 0;
margin-left: -16px;
border-radius: 3px;
background-color: #f9f9fa;
border: 1px solid #dfdfdf; }
.checkbox label::after {
content: "";
width: 9px;
height: 9px;
top: 0;
left: 0;
border-radius: 0.05em;
background-color: var(--accent-color);
position: absolute;
transform: scale(0);
transition: 0.5s transform ease; }
.checkbox input:checked + label::after {
transform: scale(1);
width: 9px;
height: 9px;
background: #7366ff;
left: -11px;
top: 6px;
border-radius: 3px; }
