.form-list {
  width: 100%;
  height: 13px;
  background-color: #001f3f;
  border-radius: 12px 12px 0 0;
  margin-bottom: 8px;
}

.form-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-content {
  padding: 20px;
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
  color: #001f3f;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-control:focus {
  outline: none;
  border-color: #001f3f;
}

.btn-submit {
  background-color: #001f3f;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.btn-submit:hover {
  background-color: #004080;
}
