* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: auto; 
}

#bg-video {
  position: fixed;  
  top: 0;
  left: 0;
  width: 100%;      
  height: 100%;     
  object-fit: cover; 
  z-index: -1;    
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; 
  padding: 0;
  background: #000; 
}

.main-wrapper {
  width: 90%;
  max-width: 750px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTENEDOR DE LOGIN/REGISTER CON EFECTO GLASSMORPHISM */
.wrapper {
  position: relative;               
  z-index: 1;                       
  width: 420px;
  background: rgba(0, 0, 0, 0.6); /* Fondo oscuro translúcido */
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(8px);
  margin: 20px; 
  color: #fff;
}


.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo-container img {
  max-width: 100px;
  margin-bottom: 15px;
}

.logo-container h2 {
  font-size: 24px;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


.input-box {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.input-box input {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: border 0.3s ease, background 0.3s ease;
}

.input-box input:focus {
  border-color: #7928CA; 
  outline: none;
}

.input-box input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(45deg, #7928CA, #FF0080); /* Degradado de morado a rosa */
  border: none;
  border-radius: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background: linear-gradient(45deg, #FF0080, #7928CA);
}

.register-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.register-link a {
  color: #FF0080; 
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-link a:hover {
  color: #7928CA;
}
.row-remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  margin-bottom: 20px;
}

.remember-me {
  display: flex;
  align-items: center; 
  gap: 5px;
  font-size: 14px;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7928CA; 
}

.forgot {
  margin: 0; 
  font-size: 14px;
}

.forgot p {
  margin: 0;
}

.forgot a {
  color: #FF0080;
  text-decoration: none; /* Sin subrayado */
  transition: color 0.3s ease;
}

.forgot a:hover {
  color: #7928CA;
  text-decoration: none;
}