/* Card container styling */
body{
    background-color: #e4e7ea     ;
}
.uk-card {
  background-color: #e9e5e1         !important    ;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  /* max-width: 640px; */
  margin: 3rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Card title and meta text */
.page-title::after{
    width: 100% !important;
    /* margin-bottom: 20px; */
}
h1{
    margin: 0;
  
}


.uk-text-meta {
  color: #6a040f !important;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.9;
}

/* Form grid and spacing */
.uk-grid-small {
  margin-top: 2rem;
}

.uk-form-label {
  color: #2A4169 !important;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
}

/* Input and textarea styling */
.uk-input,
.uk-textarea {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  width: 100%;
  background: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.uk-input:focus,
.uk-textarea:focus {
  border-color: #6a040f !important;
  box-shadow: 0 0 10px rgba(106, 4, 15, 0.25);
  background: #ffffff;
  outline: none;
}

.uk-input::placeholder,
.uk-textarea::placeholder {
  color: #999 !important;
  font-style: italic;
}

/* Form icon styling */
.uk-form-icon {
  color: #6a040f !important;
  width: 45px;
  text-align: center;
  transition: color 0.3s ease;
}

.uk-input:focus + .uk-form-icon {
  color: #2A4169 !important;
}

/* Error message styling */
.uk-text-danger {
  font-size: 0.9rem;
  color: #fff ;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Textarea specific styling */
.uk-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Button styling */
.uk-button-primary {
  background-color: #2A4169 !important;
  color: #ffffff !important;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  /* letter-spacing: 0.05em; */
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.uk-button-primary:hover {
  background-color: #6a040f !important;
  border-color: #2A4169;
  transform: translateY(-3px);
}

.uk-button-primary:active {
  transform: translateY(0);
}

.uk-button-primary:focus {
  box-shadow: 0 0 12px rgba(106, 4, 15, 0.4) !important;
}

.uk-button-primary [uk-icon] {
  vertical-align: middle;
  color: #ffffff !important;
}

/* Filepond and reCAPTCHA styling */
.filepond--root {
  border-radius: 10px;
  border: 1px solid #d1d1d1;
}

.filepond--panel-root {
  background: #f9f9f9;
  transition: border-color 0.3s ease;
}

.filepond--panel-root:hover {
  border-color: #6a040f !important;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .uk-width-1-2s {
    width: 100%;
  }

  .uk-card {
    padding: 1.75rem;
    margin: 1.5rem;
  }

  .uk-card-title {
    font-size: 1.75rem;
  }

  .uk-button-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
/* Make October's default flash look like UIkit */