 

.vulnerability-report-form-container { 
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #686868;
}
.form-title {
    text-align: center;
    line-height: 24px;
    text-align: center;
    font-family: "Inter", sans-serif !important;
    font-size: 24px !IMPORTANT;
    font-weight: 600 !important;
    margin: 0 !IMPORTANT;
}

.form-description p { 
        font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    padding-bottom: 24px;
    border-bottom: 1px solid #686868;
    color: #000 !important;
    margin:0;
}

.vulnerability-report-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-fields-container {
  display: flex;
  flex-direction: column;
  gap:24px;
     margin-top: 24px;
       margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column; 
}

/* Field Width Classes */
.form-field.field-width-full {
  flex: 1 1 100%;
  width: 100%;
}

.form-field.field-width-half {
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
}

.form-field.field-width-third {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 200px;
}

.form-field.field-width-two-thirds {
  flex: 1 1 calc(66.666% - 7px);
  min-width: 300px;
}

.form-field label {
    font-size: 14px ! IMPORTANT;
    font-weight: 400 !important;
    line-height: normal ! IMPORTANT;
    font-family: "Inter", sans-serif ! IMPORTANT;
    color: #000000 ! IMPORTANT;
    padding-bottom: 12px ! IMPORTANT; 
}

.form-field label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
   
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  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 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal !important;
  margin-bottom: 0 !important;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.radio-text,
.checkbox-text {
  font-size: 14px;
  color: #333;
}

/* File Upload */
.form-field input[type="file"] {
  padding: 8px 12px;
  border: 2px dashed #ddd;
  background: #f9f9f9;
  cursor: pointer;
}

.form-field input[type="file"]:hover {
  border-color: #4285f4;
  background: #f0f7ff;
}

.file-info {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* Submit Button Enhanced Icon Styles */
.submit-button {
     background: #194C9F;
    padding: 12px 15px;
    font-size: 16px ! IMPORTANT;
    line-height: 100%;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 0 !important;
}
.submit-button:active {
}

.submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-button .button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 1;
}

.submit-button .button-icon i,
.submit-button .button-icon svg {
  font-size: inherit;
  width: inherit;
  height: inherit;
}

.submit-button:hover .button-icon {
  transform: translateX(2px);
}

.submit-button .button-text {
  display: inline-block;
  line-height: 1;
}

/* Loading state adjustments */
.submit-button .loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

/* Form Messages Enhanced */
.form-messages {
  margin-top: 20px;
}

.success-message,
.error-message {
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 10px;
  display: none;
  font-size: 14px;
  line-height: 1.4;
  animation: slideIn 0.3s ease-out;
}

.success-message {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Message Icons (optional) */
.success-message::before {
  content: "✓ ";
  font-weight: bold;
  margin-right: 4px;
}

.error-message::before {
  content: "⚠ ";
  font-weight: bold;
  margin-right: 4px;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Field Validation States */
.form-field input,
.form-field select,
.form-field textarea {
    width: 100% ! IMPORTANT;
    font-size: 14px ! IMPORTANT;
    padding: 14px 18px;
    border: 1px solid #686868 !important;
    border-radius: 8px ! IMPORTANT;
    line-height: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #686868 ! IMPORTANT;
}

.form-field.field-success input,
.form-field.field-success select,
.form-field.field-success textarea {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

 
@media (max-width: 1024px) {
.vulnerability-report-form-container {
    padding: 24px 20px; 
}
.form-description p {
    font-size: 16px; 
    line-height: 20px; 
    padding-bottom: 20px; 
}

.form-fields-container { 
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}
}

@media (max-width: 480px) {

.form-title { 
    line-height: 20px; 
    font-size: 20px !IMPORTANT; 
}
.vulnerability-report-form-container {
    padding: 20px 15px;
}
.notice-main-border {
    padding: 15px;
}
.vulnerability-report-form { 
    gap: 10px;
}

}