* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #fffef7;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.min-vh-100 {
  min-height: 100vh;
  padding: 40px 0;
}

.form-container {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 0 auto;
  max-width: 800px;
}

.heading-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5d700;
}

.logo-container img {
  height: 56px;
  width: auto;
}

.border-start {
  border-left: 3px solid #f5d700 !important;
  height: 40px;
  margin: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.form-group {
  padding: 0 15px;
  margin-bottom: 20px;
  flex: 1;
  min-width: 300px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fefefe;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #f5d700;
  background-color: #fffef7;
}

.form-control:hover {
  border-color: #d4af37;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.w-100 {
  width: 100%;
}

.text-small {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.text-small input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: top;
  margin-top: 2px;
}

.text-small a {
  color: #d4af37;
  text-decoration: none;
}

.text-small a:hover {
  text-decoration: underline;
}

.submit-btn {
  background-color: #f5d700;
  color: #333;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin: 20px auto;
  display: block;
}

.submit-btn:hover {
  background-color: #d4af37;
}

.submit-btn:active {
  transform: translateY(1px);
}

.success-message {
  background-color: #f0f8e6;
  color: #2d5016;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #c3e6a0;
  display: none;
}

.error-message {
  background-color: #fef2f2;
  color: #991b1b;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #fecaca;
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    margin: 0 10px;
  }
  
  .form-group {
    min-width: 100%;
  }
  
  .heading-section {
    flex-direction: column;
    text-align: center;
  }
  
  .border-start {
    width: 100%;
    height: 3px;
    border-left: none;
    border-bottom: 3px solid #f5d700;
    margin: 15px 0;
  }
  
  .submit-btn {
    width: 100%;
  }
}