.elementor-12035 .elementor-element.elementor-element-0747dc6{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--flex-wrap:wrap;--align-content:center;--margin-top:10%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}.elementor-12035 .elementor-element.elementor-element-0747dc6.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-12035 .elementor-element.elementor-element-0747dc6{--margin-top:15%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}}@media(min-width:768px){.elementor-12035 .elementor-element.elementor-element-0747dc6{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-3b2a019 *//* 🔐 Password Requirements */
#password-info {
  font-size: 14px;
  color: --var(accent-1);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.password-requirements {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.password-requirements li {
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 20px;
}

/* Default (neutral icon) */
.password-requirements li::before {
  content: "\f111"; /* Font Awesome circle icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #9ca3af;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Valid (green check) */
.password-requirements li.valid {
  color: #10b981; /* green */
}
.password-requirements li.valid::before {
  content: "\f00c"; /* check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #10b981;
}

/* Invalid (red X) */
.password-requirements li.invalid {
  color: #ef4444; /* red */
}
.password-requirements li.invalid::before {
  content: "\f00d"; /* times (X) icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ef4444;
}

#submit-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}


/* 🔔 KliKA Login Alerts */
#klika-login-alert {
  margin: 20px auto;
  max-width: 500px;
  position: relative;
}

/* Alert box */
.klika-alert {
  position: relative;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When active (fade-in) */
.klika-alert.show {
  opacity: 1;
  transform: translateY(0);
}

/* ❌ Close button - top right */
.klika-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none !important;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  color: inherit;
  padding: 0;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ❌ Remove shadow from alert container */
.klika-alert {
  box-shadow: none !important;
}


/* 🎨 Types of alerts */
.klika-error {
  background: #ffe5e5;
  color: #c0392b;
  border: 1px solid #e74c3c;
}

.klika-success {
  background: #e8f9f0;
  color: #27ae60;
  border: 1px solid #2ecc71;
}

/* ✨ Fade-out animation */
.fade-out {
  opacity: 0 !important;
  transform: translateY(-10px);
}

.manual-login {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scaleY(0.9);
  transition: all 0.4s ease;
}

.manual-login.active {
  max-height: 1000px;
  opacity: 1;
  transform: scaleY(1);
  animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Chevron rotation */
#chevron {
  transition: transform 0.3s ease;
}
#chevron.rotate {
  transform: rotate(180deg);
}

.sign-in-container {
    margin-top: 3rem !important;
	 width: 100%;
	 max-width: 500px !important;
	 position: relative;
	 z-index: 1;
}
 .toggle-buttons {
	 display: flex;
	 gap: 12px;
	 margin-bottom: 24px;
	 background: rgba(255, 255, 255, 0.1);
	 padding: 6px;
	 border-radius: 16px;
	 backdrop-filter: blur(10px);
}
 .toggle-btn {
	 flex: 1;
	 padding: 12px;
	 border: none;
	 background: transparent;
	 color: rgba(255, 255, 255, 0.7);
	 font-size: 15px;
	 font-weight: 600;
	 border-radius: 12px;
	 cursor: pointer;
	 transition: all 0.3s ease;
}
 .toggle-btn.active {
	 background: white;
	 color: #f97316;
	 box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
	 transform: translateY(-2px);
}

 .form-card {
	 background: var(--main-card-bg);
	 border-radius: 24px;
	 padding: 2rem;
	 box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	 display: none;
    animation: fadeSlideIn 0.5s ease forwards;
}
 .form-card.active {
	 display: block;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(15px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
 .form-header {
	 text-align: center;
	 margin-bottom: 32px;
}
.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  background: var(--gradient-yellow-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	 animation: textPulse 1.5s infinite;
}

 @keyframes textPulse {
	 0%, 100% {
		 transform: scale(1);
	}
	 50% {
		 transform: scale(1.1);
	}
}
.form-header p {
  color: #6b7280;
  font-size: 15px;
  margin-top: 8px;
}

/* Progress Steps */
 .progress-steps {
	 display: flex;
	 justify-content: space-between;
	 margin-bottom: 32px;
	 position: relative;
}
 .progress-steps::before {
	 content: '';
	 position: absolute;
	 top: 20px;
	 left: 20px;
	 right: 20px;
	 height: 2px;
	 background: #e5e7eb;
	 z-index: 0;
}
 .progress-line {
	 position: absolute;
	 top: 20px;
	 left: 20px;
	 height: 2px;
	 background: linear-gradient(90deg, #fbbf24, #f97316);
	 z-index: 1;
	 transition: width 0.4s ease;
}
 .step {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 position: relative;
	 z-index: 2;
}
 .step-circle {
	 width: 40px;
	 height: 40px;
	 border-radius: 50%;
	 background: #e5e7eb;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-weight: 600;
	 color: #9ca3af;
	 transition: all 0.3s ease;
	 margin-bottom: 8px;
}
 .step.active .step-circle {
	 background: linear-gradient(135deg, #fbbf24, #f97316);
	 color: white;
	 box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
}
 .step.completed .step-circle {
	 background: #10b981;
	 color: white;
}
 .step.completed .step-circle::after {
	 content: '✓';
}
 .step-label {
	 font-size: 12px;
	 color: #6b7280;
	 text-align: center;
}
/* --- Greeting Animation --- */
 #greeting-msg {
	 opacity: 0;
	 transform: translateY(-10px);
	 animation: fadeIn 0.5s forwards;
}
/* --- Timer Animation --- */
 .timer-display {
	 transition: all 0.3s ease;
}
 .timer-flash {
	 color: #f97316;
	 transform: scale(1.3);
}

.timer-unit {
    text-align: center;
}

.timer-value {
    font-size: 4rem;
    font-weight: 900;
    color: #ff9800;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(255, 152, 0, 0.2);
}

.timer-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-separator {
    font-size: 3rem;
    font-weight: 900;
    color: var(--heading-2);
    display: flex;
    padding: 8px;
}
/* --- Keyframes --- */
 @keyframes fadeIn {
	 to {
		 opacity: 1;
		 transform: translateY(0);
	}
}
 @keyframes slideIn {
	 from {
		 opacity: 0;
		 transform: translateX(20px);
	}
	 to {
		 opacity: 1;
		 transform: translateX(0);
	}
}
 .input-group {
	 margin-bottom: 24px;
}
 .input-row {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 16px;
}
 label {
	 display: block;
	 font-size: 14px;
	 font-weight: 600;
	 color: #374151;
	 margin-bottom: 8px;
}
 input {
	 width: 100%;
	 padding: 14px 16px;
	 border: 2px solid var(--accent);
	 border-radius: 12px !important;
	 font-size: 15px;
	 transition: all 0.3s ease;
	 outline: none;
}
 input:focus {
	 border-color: #f97316;
	 box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
 input.valid {
	 border-color: #10b981;
}
 input.invalid {
	 border-color: #ef4444;
}

/* --- Green input borders for all steps --- */
 input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
	 border: 2px solid var(--accent);
	 border-radius: 12px !important;
	 padding: 8px;
	 outline: none;
	 background-color: transparent !important;
	 width: 100%;
}
 input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus {
	 border-color: #22c55e;
	 box-shadow: 0 0 5px rgba(34,197,94,0.5);
}

/* Ensure all hidden form steps are initially invisible */
 .form-step {
	 display: none;
	 opacity: 0;
	 transition: all 0.4s ease;
}
 .form-step.active {
	 display: block;
	 opacity: 1;
}
 .validation-message {
	 font-size: 13px;
	 margin-top: 6px;
	 display: none;
	 animation: fadeIn 0.3s ease;
}
 .validation-message.show {
	 display: block;
}
 .validation-message.error {
	 color: #ef4444;
}
 .validation-message.success {
	 color: #10b981;
}
/* Password Strength */
 .password-strength {
	 margin-top: 8px;
	 display: none;
}
 .password-strength.show {
	 display: block;
}
 .strength-bars {
	 display: flex;
	 gap: 4px;
	 margin-bottom: 6px;
}
 .strength-bar {
	 flex: 1;
	 height: 4px;
	 background: #e5e7eb;
	 border-radius: 2px;
	 transition: all 0.3s ease;
}
 .strength-bar.active {
	 background: #ef4444;
}
 .strength-bar.active.medium {
	 background: #f59e0b;
}
 .strength-bar.active.strong {
	 background: #10b981;
}
 .strength-text {
	 font-size: 12px;
	 color: #6b7280;
}
/* XP Bar */
 .xp-section {
	 background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
	 border-radius: 16px;
	 padding: 20px;
	 margin-bottom: 24px;
}
 .xp-header {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 margin-bottom: 12px;
}
 .xp-label {
	 font-size: 14px;
	 font-weight: 600;
	 color: #374151;
}
 .xp-value {
	 font-size: 14px;
	 font-weight: 700;
	 background: linear-gradient(135deg, #fbbf24, #f97316);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
}
 .xp-bar-container {
	 position: relative;
	 height: 12px;
	 background: #d1d5db;
	 border-radius: 6px;
	 overflow: hidden;
	 margin-bottom: 12px;
}
 .xp-bar-fill {
	 height: 100%;
	 background: linear-gradient(90deg, #fbbf24, #f97316);
	 border-radius: 6px;
	 transition: width 0.6s ease;
	 box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}
 .xp-milestones {
	 display: flex;
	 justify-content: space-between;
	 position: relative;
	 margin-top: -6px;
}
 .milestone {
	 width: 24px;
	 height: 24px;
	 background: white;
	 border: 3px solid #d1d5db;
	 border-radius: 50%;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 12px;
	 transition: all 0.3s ease;
	 position: relative;
	 z-index: 1;
}
 .milestone.achieved {
	 border-color: #f97316;
	 background: linear-gradient(135deg, #fbbf24, #f97316);
	 color: white;
	 animation: starPulse 0.6s ease;
}
 @keyframes starPulse {
	 0%, 100% {
		 transform: scale(1);
	}
	 50% {
		 transform: scale(1.3);
	}
}
/* Buttons */
 .button-group {
	 display: flex;
	 gap: 12px;
	 margin-top: 32px;
}

/* Challenge Timer */
 .challenge-banner {
	 background: var(--main-card-bg);
	 border-radius: 20px;
	 padding: 24px;
	 margin-bottom: 20px;
	 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	 text-align: center;
	 animation: fadeIn 0.5s ease;
	 display: none;
}
 .challenge-banner.show {
	 display: block;
}
 .start-challenge-btn {
	 background: linear-gradient(145deg, #fbbf24, #f97316);
	 color: white;
	 padding: 16px 48px;
	 border: none;
	 border-radius: 16px;
	 font-size: 18px;
	 font-weight: 700;
	 cursor: pointer;
	 box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5), 0 4px 12px rgba(251, 191, 36, 0.4), inset 0 -3px 10px rgba(0, 0, 0, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.4);
	 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	 border: 2px solid rgba(251, 191, 36, 0.8);
	 transition: all 0.3s ease;
}
 .start-challenge-btn:hover {
	 transform: translateY(-4px);
	 box-shadow: 0 12px 32px rgba(249, 115, 22, 0.6), 0 6px 16px rgba(251, 191, 36, 0.5), inset 0 -3px 10px rgba(0, 0, 0, 0.15), inset 0 2px 6px rgba(255, 255, 255, 0.5);
}
 .start-challenge-btn:active {
	 transform: translateY(-1px);
}
 .challenge-title {
	 font-size: 18px;
	 font-weight: 700;
	 color: #1f2937;
	 margin-bottom: 16px;
	 background: linear-gradient(135deg, #fbbf24, #f97316);
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
}
 .timer-display {
	 font-size: 48px;
	 font-weight: 800;
	 color: #f97316;
	 margin-bottom: 12px;
	 font-family: 'Courier New', monospace;
	 text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}
 .timer-display.warning {
	 color: #f59e0b;
	 animation: pulse 1s infinite;
}
 .timer-display.critical {
	 color: #ef4444;
	 animation: pulse 0.5s infinite;
}
 @keyframes pulse {
	 0%, 100% {
		 transform: scale(1);
	}
	 50% {
		 transform: scale(1.05);
	}
}
 .timer-label {
	 font-size: 14px;
	 color: #6b7280;
	 margin-bottom: 16px;
}
 .add-time-btn {
	 background: linear-gradient(145deg, #10b981, #059669);
	 color: white;
	 padding: 12px 32px;
	 border: none;
	 border-radius: 12px;
	 font-size: 15px;
	 font-weight: 600;
	 cursor: pointer;
	 box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4), 0 3px 8px rgba(5, 150, 105, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
	 transition: all 0.3s ease;
	 display: none;
	 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	 border: 1px solid rgba(16, 185, 129, 0.6);
}
 .add-time-btn.show {
	 display: inline-block;
	 animation: bounceIn 0.5s ease;
}
 .add-time-btn:hover {
	 transform: translateY(-3px);
	 box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5), 0 5px 12px rgba(5, 150, 105, 0.4), inset 0 -2px 6px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}
 .add-time-btn:active {
	 transform: translateY(-1px);
	 box-shadow: 0 3px 8px rgba(16, 185, 129, 0.4), 0 2px 4px rgba(5, 150, 105, 0.3), inset 0 -1px 4px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}
 @keyframes bounceIn {
	 0% {
		 opacity: 0;
		 transform: scale(0.8);
	}
	 50% {
		 transform: scale(1.05);
	}
	 100% {
		 opacity: 1;
		 transform: scale(1);
	}
}

.divider {
  position: relative;
  text-align: center;
  margin: 12px 0;
  color: #9ca3af;
  font-weight: 500;
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e5e7eb;
}
.divider::before { left: 0; }
.divider::after { right: 0; }


/* Responsive */
 @media (max-width: 640px) {
	 .form-card {
		 padding: 28px 24px;
	}
	 .input-row {
		 grid-template-columns: 1fr;
		 gap: 24px;
	}
	 .step-label {
		 font-size: 11px;
	}
	 .form-header h2 {
		 font-size: 24px;
	}
}
    /* Google Sign In Button */
    .nsl-container {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .nsl-button-google {
      background: rgba(255, 255, 255, 0.05) !important;
      color: var(--accent) !important;
      border: 2px solid var(--accent) !important;
      padding: 0 1rem;
      border-radius: 14px !important;
      width: 100%;
    }
    .continue-email-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .continue-email {
        display: block;
        text-align: center;
          background: rgba(255, 255, 255, 0.05) !important;
          color: var(--accent) !important;
          border: 2px solid var(--accent) !important;
          border-radius: 14px !important;
          padding: 0.5rem 2rem;
          font-weight: 800;
          letter-spacing: 0.5px;
          cursor: pointer;
          transition: all 0.25s ease;
          box-shadow: none !important;
    }

    .continue-email:hover {   
      background: var(--accent) !important;    
      color: var(--light-green-1) !important;                       
      transform: translateY(-1px) scale(1.05);
      box-shadow: 0 4px 0 #cc9a00, 0 0 18px rgba(255, 213, 0, 0.5);
    }
    
    @media (max-width: 480px) {
      .form-header h2 {
        font-size: 1.8rem;
      }
    }/* End custom CSS */