/* ============================================
   Forgot Password Page Styles
   ============================================ */

.main {
  padding: 0px 4px 40px;
}

.logo {
  display: block;
  margin-bottom: 30px;
}

.content-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-col form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Dark blue box */
.forgot-box {
  background: #283C54;
  width: 500px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.box-title {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}

.box-info {
  font-size: 13px;
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
  max-width: 420px;
  line-height: 1.5;
}

.email-input {
  width: 100%;
  max-width: 420px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
  background: #fff;
  box-sizing: border-box;
}

.email-input:focus {
  outline: none;
  border-color: #4a6fa5;
}

.submit-btn {
  display: block;
  width: 420px;
  padding: 10px;
  background: #4a6fa5;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin: 14px auto 0;
}

.submit-btn:hover {
  background: #3a5a8a;
}

.error-message {
  color: #d32f2f;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

.success-message {
  color: #2e7d32;
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  max-width: 420px;
}

.links-row {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
}

.links-row a {
  color: #0077cc;
  text-decoration: none;
}

.links-row a:hover {
  text-decoration: underline;
}
