/* General Styling */
.V004-form-container {
  font-family: 'Arial', sans-serif;
  padding: 50px;
  background-color: #f5f5f5;
  color: #0e0c0c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Maximum width for better readability */
  margin: auto; /* Center the form */
  text-align: left;
}

.V004-instructions {
  margin-bottom: 0px;
  text-align: left;
}

.V004-instructions ul {
  list-style-type: none;
  padding-left: 0;
  align-items: left;
}

.V004-form-content {
  display: flex;
  flex-direction: column;
}

.V004-form-group {
  margin-bottom: 0px;
}

.V004-radio-group {
  display: flex;
  flex-direction: column;
  margin-top: 0px, 10px;
   margin-bottom: 20px;
   margin-left: 10px;
   margin-right: 350px ;
}

.V004-required {
  color: red;
}

.V004-form-input {
  width: 70%;
  padding: 5px;
  border: 2px solid #ba6612;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.V004-form-input:focus {
  border-color: #004d40;
  outline: none;
}

.V004-form-separator {
  text-align: center;
  font-weight: bold;
  margin: 20px ;
  color: #ba6612;
}

.V004-submit-btn {
  background-color: #004d40;
  color: white;
  border: none;
  width: 100px;
  min-height: 40px;
  margin-left: 250px;
  margin-top: 50px;
  padding: 40px, 35px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.V004-submit-btn:hover {
  background-color: #150e03;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.V004-logo-image {
  width: 50px;
  height: auto;
}

/* Adjustments for the form layout */
.V004-form-content {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Adding space between elements */
}
