@import url("https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Rubik", sans-serif;
}

.containerForm {
  display: flex;
  height: 100vh;
}

.derecha {
  flex-wrap: wrap;

  -webkit-animation-name: left;
          animation-name: left;
  -webkit-animation-duration:0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.imagen {
  flex: 1;
  background-color: black;
  transition: 1s;
  background-image: url(../Img/Login/Fondo.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title{
    margin: 0;
    font-size: 15px;
    color: black;
}

.labelText{
    font-weight: normal;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.4);
}
.header > h2 {
  margin: 0;
  color: #155D27;
}
.footerForm{
    height: 9vh;
    background: linear-gradient(to right, #fff 0%, #1A7431 100%);
    -webkit-animation-name: left;
    animation-name: left;
}

.form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.form > p {
  text-align: right;
}

.form > p > a {
  color: #000;
  font-size: 14px;
}

.form-field {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: "Rubik", sans-serif;
  outline: 0;
  transition: 0.1s;
}

.form-field:focus {
  border-color: #0f7ef1;
}

.animation {
  -webkit-animation-name: move;
          animation-name: move;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionTitulo {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionTexto {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionInput {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionInput2 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionLabe {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animacionBoton {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@-webkit-keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@-webkit-keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 440px;
  }
}
@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 800px;
  }
}


.btn {
  color: var(--color);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.btn:hover, .btn:focus {
  border-color: var(--hover);
  color: #fff;
}


.btn {
  background: none;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 12px 10px;
  background: linear-gradient(to right, #069e2d 0%, #1A7431 100%);
  border-radius: 4px;
  color: #fff;
  letter-spacing: 1px;
  font-family: "Rubik", sans-serif;
  cursor: pointer;
}

.close:hover,
.close:focus {
  box-shadow: inset -30em 0 0 0 var(--hover), inset 30em 0 0 0 var(--hover);
  color: #069e2d;
  border: 2px solid #069e2d;
}
.close {
  --color: #069e2d;
  --hover: #fff;
}