.elementor-4594 .elementor-element.elementor-element-ecb4240{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e843865 *//* =====================================================
   FULL-VIEWPORT BACKGROUND (FIXED & SCALABLE)
===================================================== */

html,
body {
  min-height: 100%;
  background: var(--bg);
}

body {
  position: relative;
  background:
    radial-gradient(
      120vw 80vh at 50% -20vh,
      rgba(79,108,255,0.22),
      transparent 60%
    ),
    radial-gradient(
      90vw 70vh at 80% 30vh,
      rgba(14,165,233,0.16),
      transparent 65%
    ),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* =====================================================
   ACUC LOGIN – MODERN CLEAN DESIGN
===================================================== */

/* -----------------------------------------------------
   Reset
----------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}


/* -----------------------------------------------------
   Theme Variables
----------------------------------------------------- */

body.theme-dark {
  --bg: #060914;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #a1a9bd;
  --accent: #4f6cff;
}

body.theme-light {
  --bg: #eef2ff;
  --bg-soft: #f8fafc;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text: #0f172a;
  --muted: #475569;
  --accent: #4f6cff;
}

body.theme-dark .acuc-auth-title {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

body.theme-dark .acuc-auth-legal {
  color: #c7cfdf;
}
body.theme-dark .acuc-field label {
  color: #cbd5e1;
}

body.theme-dark .acuc-auth-links a {
  color: #cbd5e1;
}

body.theme-dark .acuc-auth-divider span {
  color: #cbd5e1;
}


/* -----------------------------------------------------
   Page Layout
----------------------------------------------------- */

.acuc-auth {
  min-height: 100vh;
  width: 100%;

  display: grid;
  place-items: center;



  color: var(--text);
}


/* -----------------------------------------------------
   Card Container
----------------------------------------------------- */

.acuc-login-modern {
  width: 100%;
  max-width: 420px;

  padding: 48px 44px;

  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}


/* -----------------------------------------------------
   Header
----------------------------------------------------- */

.acuc-login-header {
  margin-bottom: 32px;
}

.acuc-auth-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.acuc-auth-legal {
  font-size: 14px;
  color: var(--muted);
}


/* -----------------------------------------------------
   Form Fields
----------------------------------------------------- */

.acuc-field {
  margin-bottom: 18px;
}

.acuc-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

.acuc-field input {
  width: 100%;
  height: 52px;

  padding: 0 16px;

  border-radius: 14px;
  border: 1px solid var(--border);

  background: var(--bg-soft);
  color: var(--text);

  font-size: 15px;
}

.acuc-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 108, 255, 0.25);
}


/* -----------------------------------------------------
   Primary Button
----------------------------------------------------- */

.acuc-btn-primary {
  width: 100%;
  height: 54px;

  margin-top: 8px;

  border-radius: 16px;
  border: none;

  background: var(--accent);
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.acuc-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/* -----------------------------------------------------
   Error Message
----------------------------------------------------- */

.acuc-auth-error {
  display: none;

  margin-top: 14px;
  padding: 12px;

  font-size: 14px;
  border-radius: 12px;

  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #dc2626;
}


/* -----------------------------------------------------
   Auth Links
----------------------------------------------------- */

.acuc-auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.acuc-auth-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}


/* -----------------------------------------------------
   Divider
----------------------------------------------------- */

.acuc-auth-divider {
  position: relative;
  margin: 32px 0;

  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.acuc-auth-divider span {
  background: var(--card);
  padding: 0 12px;
}


/* -----------------------------------------------------
   Social Buttons
----------------------------------------------------- */

.acuc-social-stack a {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 50px;
  margin-bottom: 12px;

  border-radius: 14px;
  border: 1px solid var(--border);

  background: var(--bg-soft);
  color: var(--text);

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.acuc-btn-social.facebook {
  background: linear-gradient(
    180deg,
    rgba(59, 89, 152, 0.6),
    rgba(59, 89, 152, 0.4)
  );
  color: #ffffff;
}


/* -----------------------------------------------------
   Kill Injected Icons (Plugins)
----------------------------------------------------- */

.acuc-btn-social::before,
.acuc-btn-social::after,
.acuc-btn-social img,
.acuc-btn-social svg,
.acuc-btn-social i {
  display: none !important;
}
/* =====================================================
   THEME TOGGLE (SVG, PROFESSIONAL)
===================================================== */

.acuc-theme-toggle {
  position: fixed;
  top: 24px;
  right: 24px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid var(--border);

  background: var(--card);
  backdrop-filter: blur(12px);

  cursor: pointer;
  z-index: 1000;
}

/* SVG base */
.acuc-theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.8;
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}

/* Icon visibility */
body.theme-dark .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body.theme-dark .icon-sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

body.theme-light .icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

body.theme-light .icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

/* Hover polish */
.acuc-theme-toggle:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}/* End custom CSS */