body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #00b4db, #0083b0);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.contenedor {
  background: #ffc8ed;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: 300px;
}

.recomendacion {
  font-size: 0.75em;       
  color: #535353;          
  margin: -6px 0 10px 2px;    
  line-height: 1.3;          
  font-style: italic;      
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-group {
  display: flex;
  margin-bottom: 8px;
}

.input-group button {
  height: 37px;
  padding: 8px 12px;
  border: none;
  background: #ff65ba;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 4px;
}

.input-group button:hover {
  background: #ff62be;
}

.barra-seguridad {
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px;
}

.nivel {
  height: 100%;
  width: 0%;
  background-color: red;
  transition: width 0.3s ease-in-out;
}

#textoSeguridad {
  font-size: 0.9em;
  text-align: center;
  margin-top: 5px;
}

/* Estilo para que el logo se vea más pequeño */
.logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/fondo2.jpg") no-repeat center center/cover;
  filter: blur(6px);
  opacity: 0.6;
  z-index: -1;
}
