:root {
  --primary: #FFCC00;
  --secondary: #1B1B1B;
  --success: #10b981;
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --border-color: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.img-login {
  width: 70px;
}
@media (max-width: 578px) {
  .img-login {
    width: 50px;
  }
}

.login-container {
  width: 100%;
  max-width: 440px;
}

.login-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.logo-container {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.3);
}

.logo i {
  font-size: 40px;
  color: var(--secondary);
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
}

.form-label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--bg-main);
  border-color: var(--primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.form-control::placeholder {
  color: #64748b;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 20px;
  pointer-events: none;
  z-index: 999;
}

.input-with-icon {
  padding-left: 48px;
}

.btn-login {
  width: 100%;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-login:hover {
  background: #ffdb33;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.4);
}

.btn-login:active {
  transform: translateY(0);
}

.forgot-password {
  text-align: right;
  margin-top: 12px;
}

.forgot-password a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: var(--primary);
}

.divider {
  display: flex;
  align-items: center;
  margin: 32px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  padding: 0 16px;
}

.footer-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 24px;
}

.footer-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-text a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .login-card {
    padding: 32px 24px;
  }
  .logo {
    width: 64px;
    height: 64px;
  }
  .logo i {
    font-size: 32px;
  }
  .logo-text {
    font-size: 20px;
  }
}

/*# sourceMappingURL=login.css.map */
