*{      box-sizing: border-box;
}

body {
  /* font-family: 'Segoe UI', sans-serif; */
  padding-top: 70px;
  background-color: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 40px 10px; */
}

.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 500px;
  width: 100%;
}

h2 {
  text-align: center;
  color: #1c6ba1;
}

p.description {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.row {
  display: flex;
  gap: 10px;
}

.row .col {
  flex: 1;
}

.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox input {
  margin-right: 10px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #1c6ba1;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #145785;
}

.login-text {
  text-align: center;
  margin-top: 15px;
}

.login-text a {
  color: #1c6ba1;
  text-decoration: none;
}

.login-text a:hover {
  text-decoration: underline;
}