@import url("https://fonts.googleapis.com/css?family=Roboto");
body {
  font-family: "Roboto", sans-serif;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: url("../img/nix/fondo-desktop.png");
}

.auth__header {
    padding: 13vh 1rem calc(11vh + 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    position: relative;
  }
  .auth__header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .auth__logo {
    position: relative;
    z-index: 18;
    padding: 10px;
    overflow: hidden;
  }
  .auth__body {
    padding-bottom: 2rem;
    width: 40%;
    margin: 0 auto;
  }
  .auth__form {
    min-width: 280px;
    max-width: 540px;
    margin: auto;
    margin-top: -40px;
    padding: 0 10px;
    position: relative;
    z-index: 9;
  }
  .auth__form_body {
    padding: 0.7rem 1.5rem 35px;
  }
  .auth__form_title {
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  .auth__form_actions {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    margin-top: -25px;
  }
  .auth__form_actions .btn {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(50, 128, 228, 0.5);
    background-color: #7d06a8;
    border-color: #7d06a8;
    width: 175px;
  }

  .auth__form_actions button:hover,.auth__form_actions button:active,.auth__form_actions button:focus {
    background: #5b1475;
  }

  .text-label-form{
    color: #fff;
  }

  .auth_footer{
    position: relative;
    bottom: 0;
    color: #fff;
    /* padding: 20px; */
    text-align: center;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  
  @media (max-width: 1200px){
    .auth__header {
      padding: 8vh 1rem calc(6vh + 35px);
    }
  }

  @media (max-width: 915px){
    .auth__body {
      width: 80%;
    }

    .auth_footer{
      padding: 20px;
      transform: translate(-50%, 100%);
    }
  }

  @media (max-width: 600px){
    .auth__body {
      width: 100%;
    }
    .auth_footer{
      padding: 1px;
      transform: translate(-50%, 0%);
    }
  }

  @media (max-width: 281px){
    .auth__logo img {
      height: 80px;
    }
  }