@charset "UTF-8";
/* =====================================================
   ROOT VARIABLES – NEON BLUE LOGIN
===================================================== */
:root {
  --page-background: radial-gradient(circle at top, #101726, #070b14);
  --page-color: #e6f1ff;
  --accent: #3fa9ff;
  --accent-soft: rgba(63, 169, 255, .35);
  --glass-bg: rgba(15, 22, 40, .78);
  --glass-border: rgba(120, 160, 255, .22);
}

/* =====================================================
   RESET
===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--page-background);
  color: var(--page-color);
  overflow-x: hidden;
}

/* =====================================================
   MAIN WRAPPER
===================================================== */
.main-content {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

/* =====================================================
   HEADER / LOGO
===================================================== */
.page-header {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
}

.page-header img {
  width: 90px;
  filter: drop-shadow(0 0 22px rgba(63, 169, 255, 0.65));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.page-header img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 32px rgba(63, 169, 255, 0.9));
}

/* =====================================================
   LOGIN CARD
===================================================== */
.form-section {
  width: 100%;
  max-width: 420px;
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 2.4rem 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: fadeUp 0.5s ease forwards;
}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =====================================================
   TITLE
===================================================== */
.form-section h2 {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 10px rgba(63, 169, 255, 0.35);
}

/* =====================================================
   FORM
===================================================== */
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   INPUTS
===================================================== */
.form-section input {
  height: 52px;
  padding: 0 16px;
  background: rgba(5, 10, 25, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}

.form-section input::placeholder {
  color: #a8b9e6;
}

.form-section input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: rgba(5, 10, 25, 0.8);
}

/* =====================================================
   PASSWORD VIEW
===================================================== */
.password-view {
  margin-top: 0.45rem;
  font-size: 12px;
  color: #9fbfff;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.2s ease;
}

.password-view:hover {
  color: #ffffff;
}

/* =====================================================
   BUTTON
===================================================== */
.form-section button {
  height: 56px;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, #2d7fff, #5ab3ff);
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #001018;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(63, 169, 255, 0.45);
  transition: all 0.25s ease;
}

.form-section button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(63, 169, 255, 0.65);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  margin-top: 2rem;
  font-size: 13px;
  text-align: center;
  color: #9fb0ff;
}

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 600px) {
  .main-content {
    padding: 2rem 1rem;
  }
  .form-section {
    padding: 2rem 1.6rem;
  }
  .form-section h2 {
    font-size: 18px;
  }
}

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