*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Arial', Times, serif;

}


form {
position: relative;
  width: 500px;
  height: 400px;
  padding: 20px;
  margin: 50px auto;
  background-color: #0b6d74;
  /*background-image: url('../img/casa_broli3.jpg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  border-radius: 5px;*/
  
  
}

  
h1{
    color: #f8efef ;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;

}

input{
    font-size: 16px;
    padding: 8px;
    display: flex;
    margin: 10px auto;
}


label{
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    display: block;
    margin: 15px;
    
}

input[type="button"] {

    width: 100px;
    margin-top: 20px;
    font-size: 20px;
    display: block;
    background-color: #eeeeee;
    cursor: pointer;
   
}

input[type="button"] :hover {
    background-color: rgb(255, 255, 255);
    
  
   
}
h1 {
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  
}

.textcenter {
    text-align: center;
}

.formulario-iniciosesion h1{
text-align: center;
padding-bottom: 12px;
color: #ffffff;
}
.formulario-crearcuenta h1{
  text-align: center;
  padding-bottom: 12px;
  color: #ffffff;
}
.formulario-iniciosesion a {
  display:flex;
  text-align: center; 
  margin-top: 20px;
  color: #ffffff;
}
.formulario-crearcuenta a {
  display: flex;
  text-align: center; 
  margin-top: 20px;
  color: #f5ffff;
}
/* Estilos para el formulario */
form {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  height: 320px;
  
}


input[type=email], input[type=password] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
}

/* Estilos para el botón de envío */
input[type=submit] {
  background-color: #0b6d74;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  float: right;
}

/* Estilos para el botón de envío al pasar el ratón por encima */
input[type=submit]:hover {
  background-color: #064fa3;
}
body {
  background-image: url(../img/broli-casa1.jpg);
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  border-radius: 5px;
  
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  border-radius: 5px;
  z-index: 1;
}

body * {
  position: relative;
  z-index: 2;
}



