.forgot-page {
  min-height: 100vh;
  padding: 30px 20px;
  background: #f3f4f6;
  font-family: Arial, sans-serif;
}

.logo {
  margin-top: 30px;
  margin-bottom: 40px;
  color: #8908f1;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: -1px;
  text-align: center;
}

.find-box {
  min-height: 320px;
  padding: 32px 28px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}

.find-title {
  margin-bottom: 10px;
  color: #111;
  font-size: 30px;
  font-weight: bold;
}

.find-sub {
  margin-bottom: 35px;
  color: #555;
  font-size: 17px;
}

.find-input {
  width: 100%;
  height: 68px;
  margin-bottom: 8px;
  padding: 0 18px;
  border: 2px solid #c839f3;
  border-radius: 18px;
  outline: none;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(139, 9, 245, 0.12);
}

.find-input:focus {
  border-color: #8908f1;
}

.form-message {
  min-height: 22px;
  margin-bottom: 10px;
  color: #d11a2a;
  font-size: 14px;
}

.btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.next-btn {
  width: 90px;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: #c036f7;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(139, 9, 245, 0.12);
  transition: 0.15s;
}

.next-btn:active {
  opacity: 0.8;
  transform: scale(0.95);
}

.bottom-link {
  margin-top: 60px;
  color: #666;
  font-size: 15px;
}

.bottom-link a {
  color: #666;
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 370px) {
  .forgot-page {
    padding: 24px 16px;
  }

  .logo {
    font-size: 42px;
  }

  .find-box {
    padding: 28px 22px;
  }
}
