@keyframes autofill-start {/*!*/}
@keyframes autofill-end {/*!*/}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}


.form-title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}

.info-message {
  margin: 0 0 16px;
  font-size: 16px;
  text-align: center;
}

.info-message b {
  font-weight: bold;
}

.policy-message {
  padding: 16px;
  background: #fff9ee;
  border: 1px solid #ffcd89;
  border-radius: 4px;
  text-align: center;
}

.control-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
}

.form-control-label {
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  margin: 0;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  font-size: 14px;
  color: #393939;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 24px 0 8px;
}

.submit-button {
  width: 100%;
  height: 38px;
  background-color: #425b76;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}

.submit-button:hover {
  background-color: #33475b;
  cursor: pointer;
}

.submit-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 91, 118, 0.5);
}

.cancel-link {
  margin-top: 8px;
  padding: 0 4px;
  color: #393939;
  text-decoration: none;
}

.cancel-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.return-link {
  padding: 0 4px;
  font-size: 16px;
  color: #00778a;
  text-decoration: none;
}

.return-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.alert {
  width: 100%;
  margin-bottom: 16px;
  padding: 16px;

  border-radius: 4px;
  text-align: center;
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
}

.alert-warning {
  background: #fff9ee;
  border: 1px solid #ffcd89;
}


