 body {
     padding: 20px;
     background-color: #f8f9fa;
     font-family: sans-serif;
 }

 .note {
     color: #990000;
     font-size: 0.9rem;
 }

 .separator {
     background-color: #990000;
     height: 15px;
     margin: 20px 0;
 }

 .form-container {
     background-color: #ffffff;
     padding: 30px;
     border-radius: 5px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 .application-title {
     font-weight: bold;
     font-size: 1.2rem;
     color: #000;
 }

 .welcome-text {
     color: #0056b3;
     font-weight: 600;
     margin-top: 10px;
 }

 .terms-text {
     font-size: 0.95rem;
 }


 /* Style the select dropdown */
select.form-select {
  width: 100%;
  max-width: 300px;
  padding: 10px 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
}

select.form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.4);
  outline: none;
}

/* Style the label */
label.form-label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

/* Style the submit button */
button.btn-primary {
  background-color: #0056b3;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

button.btn-primary:hover {
  background-color: #004999;
}

button.btn-primary:active {
  background-color: #003f87;
  box-shadow: inset 0 3px 5px rgba(0,0,0,0.2);
}
