@font-face {
  font-family: 'WF Visual Sans';
  src: url('../font/WFVisualSansVF.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.forgot-section {
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
}

.forgot-container {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  padding: 30px;
  margin: 0 auto;
  box-sizing: border-box;
}

.forgot-title {
  font-size: 32px;
  margin: 0 0 20px;
  text-align: center;
  font-family: 'WF Visual Sans', sans-serif;
}

.forgot-input-wrapper {
  margin-bottom: 15px;
  position: relative;
}

.forgot-input-wrapper label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-family: 'WF Visual Sans', sans-serif;
}

.forgot-container input[type="email"] {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  height: 42px;
  font-family: 'WF Visual Sans', sans-serif;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  visibility: hidden;
  font-family: 'WF Visual Sans', sans-serif;
}

.forgot-button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  height: 42px;
  margin-top: 10px;
  font-family: 'WF Visual Sans', sans-serif;
}

.forgot-button:hover {
  background-color: #0056b3;
}