html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  min-height: 100vh; 
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at top,#1c1233,#090613);
  overflow-y: auto; 
}
/* ///////////////////////////////////////// Formulario Login /////////////////////////// */

.login-wrapper-log {
  display: flex;
  justify-content: center; 
  align-items: center;    
  width: 100%;
  min-height: 100vh;
  padding: 20px 0;         
  box-sizing: border-box;
}

.login-card-log {
  width: 420px;
  max-width: 95%;
  padding: 30px 40px;
  border-radius: 14px;
  background: rgba(15,10,35,0.95);
  border: 1px solid rgba(130,90,255,0.2);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.logo-log {
  text-align: center;
  margin-bottom: 20px;
  margin-top: -1em;
}

.logo-img-log {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.logo-log span {
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 2px;
}

.title-login-log {
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 8px;
}

.text-highlight-log {
  color: #7c3aed;
  font-weight: 600;
}

.description-log {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 15px;
}

.link-log {
  color: #7c3aed;
  text-decoration: none;
  font-size: 13px;
}

.link-log:hover {
  text-decoration: underline;
}

.btn-login-log {
  margin-top: 5px;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  background: linear-gradient(90deg, #9333ea, #3b82f6);
  transition: 0.3s;
}

.btn-login-log:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.form-check-input-log {
  background-color: #0e0b1d;
  border: 1px solid #7c3aed;
}

.form-check-input-log:checked {
  background-color: #7c3aed;
  border-color: #7c3aed;
}

.form-check-input-log:focus {
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.4);
  border-color: #7c3aed;
}

.form-check-label-log {
  color: #9ca3af;
  font-size: 12px;
  margin-left: 5px;
}

.register-container-log {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #9ca3af;
}

.register-link-log {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
}

.register-link-log:hover {
  text-decoration: underline;
}

/* ///////////////////////////////////////// Modal Olvide Contraseña /////////////////////////// */

.ModalRecordarContra {
  display: flex;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.ContentElementosRecorCont {
  width: 100%;
  max-width: 700px;
  min-height: 420px;
  background-color: rgba(15, 10, 35, 0.95);
  border-radius: 15px;
  margin-left: 2em;
  margin-right: 2em;
  border: 1px solid rgba(130, 90, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

.tituloOlvidoContra{
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 8px;
}