body.oasis-landing {
  padding-top: 240px;
  background-color: white;
}

.oasis-header {
  background: white;
  padding: 30px 0;
  text-align: center;
  border-bottom: 4px solid #00843D;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.oasis-header .oasis-logo {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.oasis-header h1 {
  color: #00843D;
  font-size: 32px;
  margin: 20px 0 10px 0;
  font-weight: 700;
}
.oasis-header .tagline {
  color: #1B75BC;
  font-size: 18px;
  margin: 0;
}

.oasis-content-container {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 20px;
}

.oasis-content-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.oasis-form-container {
  background: white;
  border: 2px solid #00843D;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.oasis-form-container h2 {
  color: #00843D;
  font-size: 26px;
  margin-bottom: 1.5em;
  text-align: center;
  font-weight: 700;
}
.oasis-form-container .form {
  border: none;
  padding: 0;
}
.oasis-form-container .input-section {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  margin-bottom: 20px;
}
.oasis-form-container .input-section label {
  color: #333;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
}
.oasis-form-container .input-section input, .oasis-form-container .input-section textarea, .oasis-form-container .input-section select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background: white;
  transition: border-color 0.3s ease;
}
.oasis-form-container .input-section input:focus, .oasis-form-container .input-section textarea:focus, .oasis-form-container .input-section select:focus {
  outline: none;
  border-color: #00843D;
  box-shadow: 0 0 0 2px rgba(0, 132, 61, 0.1);
}
.oasis-form-container .input-section select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
  margin-left: 0;
}
.oasis-form-container .input-section textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.oasis-form-container .input-section input[type=file] {
  padding: 8px;
  border: 1px dashed #ccc;
  background: #f5f5f5;
}
.oasis-form-container .input-section small {
  font-size: 14px;
  color: #666;
}
.oasis-form-container .submit-button {
  background: #00843D;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 400px;
  margin: 20px auto 0;
  display: block;
}
.oasis-form-container .submit-button:hover {
  background: rgb(0, 81, 37.4318181818);
}
.oasis-form-container .submit-button:active {
  transform: translateY(1px);
}

.oasis-contact-info {
  background: linear-gradient(135deg, #00843D 0%, #4CAF50 100%);
  color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.oasis-contact-info h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 1.2em;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}
.oasis-contact-info h3 {
  color: white;
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}
.oasis-contact-info p {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.6;
}
.oasis-contact-info p a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}
.oasis-contact-info p a:hover {
  text-decoration: none;
}
.oasis-contact-info .contact-item {
  margin-bottom: 20px;
}
.oasis-contact-info .contact-item i {
  margin-right: 10px;
  width: 20px;
  display: inline-block;
}
.oasis-contact-info .cta-highlight {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 20px;
  margin-top: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.oasis-contact-info .cta-highlight p {
  font-size: 18px;
  margin: 0;
}

.msg {
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.recaptcha-container {
  margin: 25px auto;
  display: flex;
  justify-content: center;
}

.oasis-footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid #ccc;
}
.oasis-footer p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (min-width: 768px) {
  .oasis-header h1 {
    font-size: 38px;
  }
  .oasis-header .tagline {
    font-size: 20px;
  }
  .oasis-content-section {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  .oasis-form-container {
    flex: 1;
    min-width: 0;
  }
  .oasis-contact-info {
    flex: 0 0 350px;
  }
}
@media (min-width: 992px) {
  .oasis-header {
    padding: 40px 0;
  }
  .oasis-header .oasis-logo {
    max-width: 350px;
  }
  .oasis-header h1 {
    font-size: 42px;
  }
  .oasis-content-container {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .oasis-header {
    padding: 20px 15px;
  }
  .oasis-header .oasis-logo {
    max-width: 200px;
  }
  .oasis-header h1 {
    font-size: 28px;
  }
  .oasis-header .tagline {
    font-size: 16px;
  }
  .oasis-form-container,
  .oasis-contact-info {
    padding: 20px;
  }
  .oasis-content-container {
    padding: 15px;
  }
}

/*# sourceMappingURL=oasis-landing.css.map */
