/* assets/style.css - Application Form Styling */
body {
  font-family: Arial, sans-serif;
  background: #f6f9fc;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header .logo {
  max-width: 120px;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
  margin: 0;
  color: #222;
}

h2 {
  font-size: 20px;
  margin: 30px 0 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;  /* This is critical */
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.required {
  color: red;
  margin-left: 2px;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button, .button, .back-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #0066cc;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  margin-right: 10px;
}

button:hover, .button:hover, .back-button:hover {
  background-color: #005bb5;
}
