/* website feedback form */

.website-feedback textarea {
    padding: 10px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
    transition: border-color .3s ease;
    text-align: left;
}


/* Parent container styling */
.whistle-blower-form {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left column for text */
.whistle-blower-form .whistle-blower-text {
  flex: 1;
  min-width: 300px;
  padding: 15px;
  color: #333;
  text-align: justify;
}

.whistle-blower-form-content .captcha label {display:none;}

.whistle-blower-form-content .reload-captcha-wrapper{display:none;}



.whistle-blower-form .whistle-blower-text h2 {
  color: #009ee2; /* Blue for heading */
  font-size: 24px;
  margin-bottom: 15px;
}

.whistle-blower-form .whistle-blower-text p {
  font-size: 16px;
  line-height: 1.5;
}

/* Right column for form */
.whistle-blower-form .whistle-blower-form-content {
  flex: 1;
  min-width: 300px;
  padding: 15px;
}

/* Form input fields */
.whistle-blower-form .whistle-blower-form-content .form-item {
  margin-bottom: 15px;
}

.whistle-blower-form .whistle-blower-form-content input[type="text"],
.whistle-blower-form .whistle-blower-form-content input[type="email"],
.whistle-blower-form .whistle-blower-form-content input[type="tel"],
.whistle-blower-form .whistle-blower-form-content textarea,
.whistle-blower-form .whistle-blower-form-content select {
  width: 100%;
  padding: 10px;
  border: 2px solid #009ee2; /* Blue border */
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
}

.whistle-blower-form .whistle-blower-form-content input:focus,
.whistle-blower-form .whistle-blower-form-content textarea:focus,
.whistle-blower-form .whistle-blower-form-content select:focus {
  outline: none;
  border-color: #81c341; /* Green focus border */
  box-shadow: 0 0 5px rgba(129, 195, 65, 0.3);
}

/* Placeholder text */
.whistle-blower-form .whistle-blower-form-content input::placeholder,
.whistle-blower-form .whistle-blower-form-content textarea::placeholder {
  color: #666;
  opacity: 0.7;
}

/* Submit button */
.whistle-blower-form .whistle-blower-form-content .button--primary {
  background-color: #81c341; /* Green button */
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whistle-blower-form .whistle-blower-form-content .button--primary:hover {
  background-color: #6da933; /* Darker green on hover */
}

.whistle-blower-form-content h2 {
    font-size: 20px !important;
    font-weight: 500 !important;
    padding: 50px;
    text-align: justify;
}

/* Error states */
.whistle-blower-form .whistle-blower-form-content input:invalid,
.whistle-blower-form .whistle-blower-form-content textarea:invalid,
.whistle-blower-form .whistle-blower-form-content select:invalid {
  border-color: #ed1b23; /* Red for errors */
}

/* Select dropdown */
.whistle-blower-form .whistle-blower-form-content select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23009EE2" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Form actions wrapper */
.whistle-blower-form .whistle-blower-form-content .form-actions {
  text-align: center;
}

/* tender blinker */

.corriblink_me {
  animation: blinker 0.5s linear infinite;
  color: #ee1a00;
  margin-left: 10px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .whistle-blower-form {
    flex-direction: column;
    padding: 15px;
  }

  .whistle-blower-form .whistle-blower-text,
  .whistle-blower-form .whistle-blower-form-content {
    min-width: 100%;
  }
}
