/*
* Yruhz v1.0.0
* Copyright 2021
*/

.content-auth {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .content-auth > .container {
    padding: 0; }
    @media (max-width: 1139px) {
      .content-auth > .container {
        max-width: none;
        padding: 0 20px; } }
    .content-auth > .container:first-child {
      flex: 1; }

.content-auth-alt {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}
.content-auth-alt .container {
  padding: 0; 
}
@media (max-width: 1139px) {
  .content-auth-alt .container {
    max-width: none; 
  } 
}

.sign-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px; 
}
@media (min-width: 1200px) {
  .sign-wrapper {
    width: 450px; 
  } 
}
.sign-wrapper .form-group label {
  display: block;
  margin-bottom: 5px; 
}


.sign-body {
  background-image: url('/assets/img/bg-login.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}