/* Reset y configuraciones globales */
html {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  height: 100%;
  margin: 0;
  background-image: url("../img/fon.jpg");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Clases utilitarias */
.wrapper {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(30, 30, 30, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Efecto hover sutil (opcional) */
.wrapper:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}
.btn-login {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
}

/* Estilos para formularios */
.form-control {
  background-color: transparent !important;
  color: white !important;
  border: 1px solid white !important;
}

.form-control:focus {
  background-color: transparent !important;
  color: white !important;
  box-shadow: none;
}

/* Estilos para etiquetas flotantes */
.form-floating > .form-control:focus ~ label {
  color: gray !important;
  background-color: transparent !important;
}

.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: gray !important;
}
