/*CSS del Login*/


/*Login */
.container1{
 box-sizing: border-box;
 font-family: 'Roboto', sans-serif;
/*Para Centrar el Contenido*/
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;

}

/*Forma el Cuadro del Login*/
.login-container{
  display: flex;
  width: 580px;
  height: 450px;
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2);
}

/*Tomen la misma distancia*/
.register, .login{
  flex: 1;
}
.login{
  padding: 40px;
  position: relative;
}
.login h2{
  color: #08777A;
  margin-bottom: 30px;
}
.login input{
  width: 100%;
  padding: 5px;
  font-size: 16px;
  margin-bottom: 25px;
  /*quitar lines al cuadro de los input*/
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  /*Agregamos un color a la linea de abajo*/
  border-bottom: 1px solid #a8a8a8;
  /*Color de las letras*/
  color: #333;
}

/*Al presionar usuario oh contraseña esto hace q no salga el cuadro del input*/
.login input:active,
.login input:focus{
  outline: none;
}

/*Boton*/
.login .submit{
  width: 100%;
  margin: 10px 0px;
  padding: 10px;
  /*Color del boton*/
  background-image: linear-gradient(to bottom right, #190DD3, #D3D30D);
  /*Color letras del boton*/
  color: #fff;
  font-size: 16px;
  /*Sombra*/
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
  cursor: pointer;
}



/*Color degradado*/
.register{
 background-image: linear-gradient(to bottom right, #D3D30D, #190DD3);
  padding: 40px;
}

.login-items{
  color: white;
  text-align: center;
}



   .register, .login{
    flex: none;
  }

  .login::after{
    top: unset;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

