* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  color: #001b4e;
}

.forgot-header {
  height: 86px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  color: #003b8f;   /* PARJEN blue */
  line-height: 1;
}

.brand h2 span {
  color: #39b54a;   /* ACADEMY green */
}

.brand strong {
  color: #2563eb;
  font-weight: 500;
}

.back-login {
  text-decoration: none;
  color: #0b5cff;
  font-size: 16px;
  font-weight: 700;
}

.back-login i {
  margin-right: 8px;
}

.forgot-main {
  position: relative;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

.forgot-card {
  width: 710px;
  background: #ffffff;
  border-radius: 16px;
  padding: 42px 42px 34px;
  box-shadow: 0 22px 60px rgba(37, 99, 235, 0.13);
  z-index: 2;
}

.top-icon {
  width: 120px;
  height: 120px;
  background: #eaf2ff;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.top-icon > i {
  font-size: 48px;
  color: #0b5cff;
}

.top-icon span {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 26px;
  bottom: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-icon span i {
  font-size: 16px;
  color: #0b5cff;
}

.forgot-card h1 {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  color: #001b4e;
  margin-bottom: 14px;
}

.subtitle {
  text-align: center;
  color: #60708f;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.step-line {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 42px;
}

.step {
  width: 105px;
  text-align: center;
  color: #8b98ae;
}

.step span {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}

.step.active span {
  background: #0b5cff;
}

.step.active p {
  color: #0b5cff;
  font-weight: 800;
}

.step p {
  font-size: 15px;
  font-weight: 600;
}

.line {
  width: 150px;
  height: 2px;
  background: #dce5f3;
  margin-top: 15px;
}

.section {
  margin-bottom: 18px;
}

.section label {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 13px;
  color: #001b4e;
}

.input-row {
  height: 58px;
  border: 1px solid #cbdcf3;
  border-radius: 9px;
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
}

.input-row:focus-within {
  border-color: #0b5cff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.13);
}

.input-row i {
  width: 58px;
  text-align: center;
  color: #2563eb;
  font-size: 20px;
}

.input-row input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  color: #001b4e;
}

.input-row input::placeholder {
  color: #8b98ae;
}

.eye-icon {
  cursor: pointer;
  color: #64748b !important;
}

.main-btn {
  width: 100%;
  height: 59px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(135deg, #0b5cff, #004de6);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 12px 28px rgba(11, 92, 255, 0.22);
}

.main-btn i {
  margin-right: 12px;
}

.main-btn:hover {
  transform: translateY(-1px);
}

.info-box {
  margin-top: 22px;
  height: 58px;
  background: #eef6ff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #465a78;
  font-size: 15px;
}

.info-box i {
  color: #0b5cff;
  font-size: 22px;
  margin-right: 14px;
}

.collapsed {
  border: 1px solid #dce5f3;
  border-radius: 9px;
  padding: 17px 20px;
  background: #ffffff;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-header h3 {
  color: #667085;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.section-header p {
  color: #9aa6b8;
  font-size: 14px;
}

.section-header i {
  color: #0f274d;
}

.otp-content,
.password-content {
  display: none;
  margin-top: 18px;
}

.section.open .otp-content,
.section.open .password-content {
  display: block;
}

.section.open .section-header h3 {
  color: #001b4e;
}

.security-msg {
  border-top: 1px solid #dce5f3;
  margin-top: 24px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667085;
  font-size: 14px;
}

.security-msg i {
  color: #0b5cff;
  margin-right: 13px;
  font-size: 20px;
}

.error-msg {
  display: block;
  margin-top: 7px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 600;
}

.bg-icon {
  position: absolute;
  color: rgba(37, 99, 235, 0.12);
  font-size: 78px;
}

.bg-icon.book {
  top: 135px;
  left: 80px;
}

.bg-icon.cap {
  top: 150px;
  right: 90px;
}

.bg-icon.lock {
  bottom: 220px;
  left: 140px;
}

.bg-icon.mail {
  bottom: 200px;
  right: 135px;
}

footer {
  text-align: center;
  padding: 22px;
  color: #667085;
  font-size: 16px;
}

@media (max-width: 768px) {
  .forgot-header {
    padding: 0 20px;
  }

  .brand {
    font-size: 22px;
  }

  .forgot-card {
    width: 100%;
    padding: 32px 22px;
  }

  .line {
    width: 55px;
  }

  .bg-icon {
    display: none;
  }
}