/*---Estilos generales---*/

body {

  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to left, #a3712a, #e6b774); /* Horizontal */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

    
}


/*Contendor principal*/

main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------*/

/*formulario de acceso*/

.login {
  
  border: 2px, solid, #a3712a;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  text-align: center;
  width: 200px;
}


.alert-user,
.alert-pass {

  font-size: 10px;
  color: brown;

}


.login-form input,
.login-form button {

    margin-top: 20px;
}


.login-form button {

    
    background: #a3712a;
    border: 2px, solid, #a3712a;
    border-radius: 5px;
    width: 100px;
    cursor: pointer;
    
}

.login-form button:hover {

    background: #e6b774;
    border: 2px, solid, #e6b774;
    border-radius: 5px;
    width: 100px;
    cursor: pointer;

}

/*-------------------------*/








