* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea:focus, input:focus{
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

html {
  height: 100%;
}

body {
  font: 1rem/1.5 'Roboto', Arial, Helvetica, sans-serif;
  height: 100%;
}

.container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
}

.container::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 100vh;
  background: url(../img/big-x.svg) no-repeat left top;
  background-size: cover;
  background-attachment: fixed;
}

@media (min-width: 576px) {
  .container::before {
    background-size: contain;
  }
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  background-size: cover;
}

@media (min-width: 760px) {
  .login {
    width: 80%;
    max-width: 80%;
    background: url(../img/login.png) #fff no-repeat right top;
  }
}

@media (min-width: 760px) and (min-height: 700px) {
  .login {
    padding: 0;
    height: 700px;
  }
}

@media (min-width: 960px) {
  .login {
    padding: 3rem 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    background-size: contain;
  }
}

@media (min-width: 1000px) {
  .login {
    max-width: 1320px;
  }
}

.in {
  padding: 2rem;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 576px) {
  .in {
    padding: 4rem;
  }
}

@media (min-width: 960px) {
  .in {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .in {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .in__content {
    width: 60%;
    margin: 0 auto;
  }
}

.logo {
  margin-left: -20px;
}

.title {
  margin-bottom: 0;
  font-size: 2.2rem;
  color: #DC0032;
  text-transform: uppercase;
}

.subtitle {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #878787;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 1em;
  color: #ccc;
  pointer-events: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.form-group input[type=text], .form-group input[type=password] {
  display: block;
  width: 100%;
  margin-top: 1.75em;
  padding: 0.75em 0;
  border: 0;
  border-bottom: 1px solid #076B8F;
  line-height: 1em;
  background-color: transparent;
}

.form-group input[type=text]:focus ~ label, .form-group input[type=text]:valid ~ label, .form-group input[type=password]:focus ~ label, .form-group input[type=password]:valid ~ label {
  color: #878787;
  font-size: 1rem;
  top: -1.3em;
}

.checkbox-group {
  margin-bottom: 2em;
}

.btn {
  display: block;
  width: 100%;
  padding: 1em;
  margin-bottom: rem;
  border: 0;
  border-radius: 0.5em;
  color: #fff;
  background-color: #DC0032;
}

.btn:active, .btn:focus {
    background-color: #a70027;
    animation: gradient 300ms;
  }

.error {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #DC0032;
}

@keyframes gradient {
  0% {
    background: radial-gradient(circle at center, #a70027 0%, #DC0032 0%, #DC0032 100%);
  }
  25% {
    background: radial-gradient(circle at center, #a70027 24%, #DC0032 25%, #DC0032 100%);
  }
  50% {
    background: radial-gradient(circle at center, #a70027 49%, #DC0032 50%, #DC0032 100%);
  }
  75% {
    background: radial-gradient(circle at center, #a70027 74%, #DC0032 75%, #DC0032 100%);
  }
  100% {
    color: #fff;
    background: radial-gradient(circle at center, #a70027 99%, #DC0032 100%, #DC0032 100%);
  }
}
/*# sourceMappingURL=style.css.map */
