/* ===== Login Page — Specific Styles ===== */

/* Forgot password link */

.field-link {
  font-size: 12px;
  color: #ef4444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.field-link:hover {
  color: #ff6b6b;
}

.forgot-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #ef4444;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.forgot-link:hover {
  color: #ff6b6b;
}


/* Submit button override */

.btn-submit {
  background: rgba(255, 0, 0, 0.6);
  border-radius: 53px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 53px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.btn-submit:hover:not(:disabled) {
  background: rgba(255, 0, 0, 0.75);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
}


/* Input override */

.input-field {
  background: #0e0e10;
  border: 1px solid rgba(255, 255, 255, 0.05);
}


/* Auth subtitle override */

.auth-subtitle {
  color: #94a3b8;
  opacity: 1;
}


/* Security bar */

.security-bar {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 8px;
}

.security-text {
  font-size: 13px;
  color: #64748b;
}

.security-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  margin-right: 4px;
  vertical-align: middle;
}

.security-status {
  color: #ef4444;
  font-weight: 500;
}


/* Footer link section override */

.footer-link-section {
  padding-top: 24px;
}


/* Responsive */

@media (max-width: 640px) {
  .field-link {
    font-size: 11px;
  }
}
