  * {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Logo */        
.section-logo {
  width: 100%;
  min-height: 62px;
  background: linear-gradient(120deg, #1f2937 0%, #3b3f47 40%, #515865 100%);
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 22px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  letter-spacing: .4px;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);  /* efecto premium */
}

/* Branding / Logo chingón */
.section-logo .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  background: linear-gradient(90deg,#d4c173,#f7e9a0 60%);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .5px;
}

/* Botones/Iconos de topbar */
.section-logo .actions i,
.section-logo .actions svg {
  color: #9ba0a6;
  transition: .2s;
}
.section-logo .actions i:hover,
.section-logo .actions svg:hover {
  color: #f1f1f1;
}

/* Login Form */
.login-container {
  width: 90%;
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
   color:#6a1b1b;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
   color:#6a1b1b;
}

.input-group input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #6a1b1b;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #882222;
}

.forgot-password {
  text-align: right;
  margin-top: 10px;
}

.forgot-password a {
  color: #0D47A1;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

/* Dialog Custom */
#dialog-recuperar {
  display: none;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .login-container {
    width: 95%;
    padding: 25px 15px;
  }
  .logo-section {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 20px 10px;
  }
  .input-group input {
    font-size: 14px;
  }
  .login-container button {
    font-size: 14px;
  }
  .forgot-password a {
    font-size: 12px;
  }
}

    .progress-text {
        font-weight: bold;
        font-size: 48px;
        background: linear-gradient(90deg, #0d47a1 0%, #1976d2 45%, #ccc 55%, #e0e0e0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 200% 100%;
        background-position: 100% 0;
        animation: loadText 3s linear infinite;
    }

    @keyframes loadText {
        from { background-position: 100% 0; }
        to   { background-position: 0 0; }
    }