/* ============================================
   MODERN FORGOT PASSWORD – sifremiunuttum.css
   Tennis Green / Orange Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === PAGE BACKGROUND === */
.elementor-section[data-id="a2d3596"] {
  background: linear-gradient(135deg, #FAF8F5 0%, #e8f5e9 50%, #FAF8F5 100%) !important;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 40px 16px !important;
}

/* === TAB HEADER === */
.nav-tabs {
  border-bottom: none !important;
  background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%) !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 18px 24px !important;
  width: 460px !important;
  margin: 0 auto !important;
  display: flex !important;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.04);
}

.nav li {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.nav li.active {
  background: transparent !important;
  padding: 0 !important;
}

.nav li a,
.nav li.active a {
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.06em !important;
  text-align: center !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* === TAB CONTENT === */
.tab-content {
  background: #ffffff !important;
  border: 1px solid #E0E0E0 !important;
  border-top: none !important;
  border-radius: 0 0 16px 16px !important;
  width: 460px !important;
  margin: 0 auto !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  padding: 0 !important;
}

.tab-content > .active {
  display: block !important;
  background: #ffffff !important;
  color: #212121 !important;
  font-size: inherit !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* === WELL === */
.well {
  border: none !important;
  border-radius: 0 0 16px 16px !important;
  padding: 32px 36px 36px !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
}

/* === FORM INPUTS === */
.well .form-control {
  border: 2px solid #E0E0E0 !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #212121 !important;
  background: #FAFAFA !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  height: auto !important;
  min-height: 50px !important;
  outline: none !important;
  box-shadow: none !important;
}

.well .form-control::placeholder {
  color: #9E9E9E !important;
  font-weight: 400 !important;
}

.well .form-control:focus {
  border-color: #2E7D32 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1) !important;
}

.well .form-group {
  margin-bottom: 16px !important;
}

/* === EXTRA INPUTS (email/sms fields) === */
.text-field-10---35-copy.w-input {
  border: 2px solid #E0E0E0 !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #212121 !important;
  background: #FAFAFA !important;
  width: 100% !important;
  min-height: 50px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 8px;
}

.text-field-10---35-copy.w-input:focus {
  border-color: #2E7D32 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1) !important;
}

/* === CUSTOM CHECKBOXES (Eposta / SMS) === */
.checkbox-container {
  display: flex !important;
  align-items: center !important;
  position: relative;
  cursor: pointer;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #424242 !important;
  background: #FAFAFA !important;
  padding: 14px 18px 14px 52px !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 12px !important;
  height: auto !important;
  min-height: 50px !important;
  margin-top: 10px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.checkbox-container:hover {
  border-color: #66BB6A !important;
  background: rgba(46, 125, 50, 0.03) !important;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 50% !important;
  left: 14px !important;
  transform: translateY(-50%);
  height: 24px !important;
  width: 24px !important;
  background-color: #E0E0E0 !important;
  border-radius: 6px !important;
  transition: all 0.25s ease !important;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #BDBDBD !important;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #2E7D32 !important;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 8px !important;
  top: 4px !important;
  width: 6px !important;
  height: 12px !important;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* === SUBMIT BUTTON === */
.well .btn-primary,
.well input[type="submit"] {
  background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
  margin-top: 16px !important;
  min-height: 52px !important;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.25) !important;
  text-transform: uppercase;
}

.well .btn-primary:hover,
.well input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.35) !important;
}

.well .btn-primary:active,
.well input[type="submit"]:active {
  transform: translateY(0) !important;
}

/* === BREADCRUMBS === */
.page-top.page-header-6 {
  background: #FAF8F5;
  padding: 12px 0;
}

.solok {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #757575;
  font-weight: 500 !important;
  margin-left: 5px;
}

.solok a {
  color: #2E7D32;
  text-decoration: none;
  font-weight: 600;
}

.solok a:hover {
  color: #1B5E20;
  text-decoration: underline;
}

/* === FADE FIX === */
.fade:not(.show) {
  opacity: 1 !important;
}

/* === ANIMATION === */
@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-tabs {
  animation: authFadeIn 0.5s ease both;
}

.tab-content {
  animation: authFadeIn 0.5s ease 0.1s both;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .nav-tabs {
    width: 100% !important;
    border-radius: 14px 14px 0 0 !important;
  }

  .tab-content {
    width: 100% !important;
    border-radius: 0 0 14px 14px !important;
  }

  .well {
    padding: 24px 20px 28px !important;
  }
}

@media screen and (max-width: 480px) {
  .elementor-section[data-id="a2d3596"] {
    padding: 20px 10px !important;
  }

  .elementor-column-gap-wide > .elementor-column > .elementor-element-populated {
    padding: 0 !important;
  }
}
