@font-face {
  font-family: 'Kola';
  src: url('../Fonts/Kola_Complete/Kola_Complete/Fonts/WEB/fonts/Kola-Regular.ttf') format('truetype'); /* Ajusta la ruta si es diferente */
  font-weight: normal;
  font-style: normal;
}
/* Estilo general limpio y consolidado */
body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Kola';
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 100px; /* deja espacio para navbar fija */
  overflow-x: hidden; /* Previene scroll horizontal */
}

/* Contenedor que centra el formulario */
.register-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
  padding-top: 160px;
}

/* Formulario */
form#registerForm {
  background: #111;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 20px #00f0ff33;
  border-radius: 16px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  animation: fadeIn 0.6s ease-in-out;
}

/* Inputs */
input[type="email"],
input[type="password"] {
  width: 94%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #0ff;
  background-color: #222;
  color: white;
  margin-bottom: 20px;
  transition: 0.3s;
  font-size: 14px;
}

input:focus {
  border-color: #B026FF;
  box-shadow: 0 0 8px #B026FFaa;
  outline: none;
}

/* Botón */
button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #B026FF;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-left: 4px;
}

button[type="submit"]:hover {
  background: #00ffcc;
  color: #000;
}

/* Título */
h2 {
  text-align: center;
  color: #B026FF;
  margin: 10px 0 15px;
  animation: flicker_purple 0.15s infinite alternate;
  text-shadow:
    0 0 5px #cc00ff,
    0 0 10px #cc00ff,
    0 0 20px #cc00ff,
    0 0 40px #cc00ff;
  font-size: 20px;
}

/* Footer full width */
.footer-container {
  width: 100%;
  background-color: #222;
  padding: 40px 20px 20px;
  color: #fff;
  text-align: center;
}

.footer-logo{
    margin-right: 370px;
}
/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes flicker_purple {
  0% { text-shadow: 0 0 5px #d000ff, 0 0 10px #d000ff, 0 0 20px #d000ff, 0 0 40px #d000ff; opacity: 1; }
  50% { text-shadow: 0 0 2px #d000ff, 0 0 5px #d000ff, 0 0 10px #d000ff, 0 0 20px #d000ff; opacity: 0.85; }
  100% { text-shadow: 0 0 10px #d000ff, 0 0 20px #d000ff, 0 0 30px #d000ff, 0 0 50px rgb(104, 5, 170); opacity: 1; }
}

@media screen and (min-width:1361px) {
  .register-wrapper{
    padding-top: 320px;
  }
}

@media screen and (min-width:834px) and (max-width:1360px) {
  .register-wrapper{
    padding-top: 320px;
  }
}
