
/* registro_barberia.css - adaptado al HTML actual, estilo premium con footer fijo */




html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  justify-content: space-between;
  min-height: 100vh;
}

/* Contenedor visual del formulario */

.form-container {
  background: url('../../../imglvl1/LogoGoCorteIcon.png') no-repeat center center;
  background-size: cover;
  background-color: #000; /* fallback si no carga */
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 520px;
  margin: 30px auto;
  text-align: center;
  animation: floatUp 0.8s ease;
  backdrop-filter: brightness(0.6); /* opcional para oscurecer */
}

}

@keyframes floatUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 28px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form input {
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  background: #1d1d1d;
  color: white;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

form input:focus {
  outline: none;
  background: #292929;
  box-shadow: 0 0 12px #ffffff55;
}

form button {
  padding: 14px;
  background: linear-gradient(90deg, #ffffff, #e0e0e0);
  color: #000;
  font-weight: bold;
  font-size: 1.05rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  transform: scale(1.03);
  box-shadow: 0 0 10px white;
}

form label {
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: left;
  color: #ccc;
}

.mensaje {
  margin-top: 20px;
  padding: 14px;
  background: #1a1a1a;
  border-radius: 12px;
  font-weight: bold;
  color: #ff6666;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.2);
  animation: glowError 0.4s ease-in-out;
}

@keyframes glowError {
  0% { box-shadow: 0 0 0px rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 12px rgba(255, 0, 0, 0.6); }
  100% { box-shadow: 0 0 0px rgba(255, 0, 0, 0.4); }
}

/* Footer fijo abajo sin importar el contenido */
.barra-footer {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 18px 12px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .form-container {
    padding: 30px 20px;
    margin: 30px 10px;
  }

  h2 {
    font-size: 2rem;
  }

  form input,
  form button {
    font-size: 1rem;
    padding: 12px;
  }

  .mensaje {
    font-size: 0.95rem;
    padding: 12px;
  }

  .barra-footer {
    font-size: 0.9rem;
    padding: 14px 8px;
  }
}
