body, html  {
   /* estilizar el cuerpo como el html, */
    /*background: rgb(0, 172, 163); */
    height: 100%; /* El contenedor ocupa el 100% de la pantal */
}
body {
    margin:0%; /* espacios fuera del contenedor cero */
    padding: 0%; /* espacios dentro del contenedro 0 */
    background: rgb(0, 119, 102);
    
    /*justify-content: center;*/
    /*align-items: center; Centrado al centro de la pantalla*/
    /*overflow: hidden;
     /*overflow: es una clase que quita la barra lateral de subir y bajar*/
} 
h1{
    text-align: center;}
    

label{
    color:white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    display:inline-block;
}

footer {
    display: block;
    
  }

  a {
    transition: background-color .3s;

  }
  
  a:hover {
    background-color: rgba(0, 255, 157, 0.459);

  }



.form-box{ /* Dimensiones del Formulario */
    background: rgb(19, 86, 88);
    width: 90%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    
    
}

.form-box_2{ /* Dimensiones del Formulario */
    background: rgb(19, 86, 88);
    width: 100%;
    height: 100%;
    max-width: 600px;
	padding:26px;
	border-radius:10px;
    margin: 0 auto;
    display: block;
    
}
.form-box_3{ /* Dimensiones del Formulario */
    background: rgb(19, 86, 88);
    width: 700px;
    height: 700px;
    padding:26px 26px;
    border-radius:30px;
    margin: 8px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}


.form-title{
    color:white;
    font-size: 500%;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}
.form-title_2{
    color:white;
    font-size: 200%;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}
.opi
{
    /*Esta funcipon la cree para modificar color y tamaño d los botones radio*/
    color: rgba(255, 255, 255, 0.664);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 130%;
}


.animate__animated.animate__flipInX
{
    
    --animate-duration: 2s;
    
}
/*.animate__animated.animate__fadeIn
{
    
    --animate-duration: 0.7s;
}
*/

/* Estilizado de los Botones */
.form-box input[type="text"],
.form-box input[type="password"],
.form-box button[type="submit"],
.form-box_2 button[type="submit"]
{
    border: 0;
    background: none;
    display: block; /* alinea una caja de texto 
    debajo del otro */
    margin: 20px auto;
    padding: 20px 40px ;
    text-align: center;
    border:3px solid rgb(0, 119, 102);
    width: 200px;
    outline: none;
    color:white;
    border-radius: 24px;
    transition: 0.44s;
}


.form-box input[type="text"]:hover,
.form-box input[type="password"]:hover
{
    width: 250px;
    border-color: white;
}


/* Efecto del Boton */
.form-box button[type="submit"],
.form-box_2 button[type="submit"]
{
    border: 0px;
    background: rgb(0, 119, 102);
    cursor: pointer; /* Cambia el cursor por un dedo arriba */
    border:3px solid rgb(0, 119, 102);
    
}

.form-box button[type="submit"]:hover,
.form-box_2 button[type="submit"]:hover
{
    background: none;
}


footer
{
    text-align: center;
    color: lavenderblush;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}