body {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.ctn__quaker {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  min-height: 500px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1e1e1e;
}
.ctn__login * {
  font-family: "Roboto Condensed", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ctn__login {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ctn__login .login__img {
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.ctn__login .login__img:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../img/textura-halftone__bottom.png');
}
.ctn__login .login__form {
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    23.26deg,
    rgba(0, 0, 0, 0) -0.57%,
    #000000 100%
  );
  background: -o-linear-gradient(
    23.26deg,
    rgba(0, 0, 0, 0) -0.57%,
    #000000 100%
  );
  background: -o-linear-gradient(23.26deg, rgba(0, 0, 0, 0) -0.57%, #000000 100%);
  background: linear-gradient(66.74deg, rgba(0, 0, 0, 0) -0.57%, #000000 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.ctn__login .login__form:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('../img/textura-halftone__top.png');
}

.ctn__login .subtitle__form,
.ctn__login .title__form {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  position: relative;
  z-index: 2;
}
.ctn__login .subtitle__form {
  font-size: 1.25rem;
  font-weight: 400;
}

.form-field {
  position: relative;
}

.form-field input + label {
  position: absolute;
  left: 20px;
  top: 1.15em;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  pointer-events: none;
}

.form-field input:focus + label,
.form-field input + label.freeze {
  font-size: 0.7em;
  font-weight: 400;
  -webkit-transform: translateY(-3em);
  -ms-transform: translateY(-3em);
  transform: translateY(-3em);
  opacity: 1;
}

.float-labels-form {
  margin: 2rem auto;
  width: 100%;
  max-width: 400px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.form-field {
  width: 100%;
  margin-bottom: 2em;
}

.form-field:last-of-type {
  margin-bottom: 0;
}

.form-field input + label {
  color: #fff;
  font-size: inherit;
  line-height: inherit;
  font-weight: 300;
  opacity: 0.5;
  text-transform: uppercase;
}

.form-field input[type="text"],
.form-field input[type="password"],
.form-field input[type="email"] {
  width: 100%;
  padding: 1em 20px;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
  color: #fff;
}
.form-field input[type="text"].input__error,
.form-field input[type="password"].input__error,
.form-field input[type="email"].input__error {
    border-color: #FA2A00;
}
::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}
::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}
:-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}
::-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}
::placeholder {
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

::-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.form-field input[type="submit"] {
  font-size: inherit;
  background-color: #02a450;
  color: #ffffff;
  border: none;
  padding: 1em 26px;
  text-transform: uppercase;
  letter-spacing: inherit;
  border: 1px solid #02a450;
  margin-bottom: 0;
  width: 100%;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: "Roboto Condensed", sans-serif;
}

.form-field input[type="submit"]:hover {
  cursor: pointer;
  background-color: #ffffff;
  color: #2d2d25;
}

.form-field input:focus {
  outline: none;
}

.container__check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}
.ctn__login .container__check{
    margin-top: 2rem;
    margin-bottom: 2rem;
    min-height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.container__check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
  -webkit-transition: background linear 0.25s;
  -o-transition: background linear 0.25s;
  transition: background linear 0.25s;
}

.container__check:hover input ~ .checkmark {
  background-color: #1e1e1e;
}

.container__check input:checked ~ .checkmark {
  background-color: #02A450;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container__check input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container__check .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.ctn__login .link___form {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          margin-top: 2rem;
          margin-bottom: 1.5rem;
}
.ctn__login .link___form span{
    margin-right: 0.25rem;
}
.ctn__login .link___form.is__back span{
    margin-left: 0.25rem;
}


.ctn__login .link___form svg{
    -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
            transform: translate(0,0);
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
    
}
.ctn__login .link___form:hover svg{
    -webkit-transform: translate( 6px,0);
        -ms-transform: translate( 6px,0);
            transform: translate( 6px,0);
}
.ctn__login .link___form:hover.is__back svg{
    -webkit-transform: translate( -6px,0);
        -ms-transform: translate( -6px,0);
            transform: translate( -6px,0);
}

.message__response{
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}
.message__response.error{
    color: #FA2A00;
}

.g-recaptcha.recaptcha__error > div {
    border: 1px solid #FA2A00;
}


@media screen and (max-width: 1024px) {
    .ctn__login .login__img{
        width: 40%;
    }
    .ctn__login .login__form{
        width: 60%;
    }
}
@media screen and (max-width: 640px) {
    .ctn__login .login__img{
        display: none;
    }
    .ctn__login .login__form{
        width: 100%;
    } 
    .ctn__login .title__form{
        font-size: 1.5rem;
        text-align: center;
    }
    .ctn__login .subtitle__form{
        font-size: 1rem;
        text-align: center;
    }
    
}