/* Custom styles for Family Fun Run */
/* Custom form styles */
/* Custom radio button styles */
/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Custom success modal styles */
/* Custom button styles */
/* Custom form section styles */
/* Custom hero section styles */
/* Custom summary box styles */
/* Custom responsive styles */
/* Custom loading animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Custom Form Styles */
/* Input Fields */
/* Select Dropdown */
/* Radio Buttons */
/* Button */
/* Modal */
/* Animations */
@keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Error States */
/* Success States */
.bg-dark {
  background-color: #001232;
}

.bg-accent {
  background-color: #F26422;
}

.bg-secondary {
  background-color: #0078BD;
}

.txt-dark {
  color: #001232;
}

.txt-secondary {
  color: #0078BD;
}

.txt-accent {
  color: #F26422;
}

.card {
  border-radius: 20px;
  padding: 20px;
}

label {
  padding-bottom: 10px;
}

.form-input-custom {
  transition: all 0.3s ease;
  border-width: 2px;
}
.form-input-custom:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.race-category-card {
  transition: transform 0.2s ease;
}
.race-category-card:hover {
  transform: translateY(-2px);
}

.race-category-card.selected {
  border-color: #3B82F6;
  background-color: #EFF6FF;
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(4px);
}

.modal-content {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-content.show {
  transform: scale(1);
  opacity: 1;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-section {
  border-radius: 1rem;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.form-section:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-gradient {
  background: linear-gradient(135deg, #60A5FA 0%, #7C3AED 100%);
}

.summary-box {
  background: linear-gradient(to bottom right, #F9FAFB, #F3F4F6);
  border: 1px solid #E5E7EB;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

.custom-form {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-form:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.custom-input {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}
.custom-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.custom-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
  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 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.custom-radio-container {
  transition: all 0.3s ease;
  position: relative;
}
.custom-radio-container:hover {
  transform: translateY(-2px);
}

.custom-radio {
  position: absolute;
  opacity: 0;
}
.custom-radio:checked + label {
  border-color: #3b82f6;
  background-color: #f0f7ff;
}
.custom-radio:checked + label::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #3b82f6;
  border-radius: 50%;
  animation: scale-in 0.2s ease-in-out;
}

.custom-button {
  background-color: #3b82f6;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.custom-button:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}
.custom-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.modal-backdrop.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.fade-in {
  animation: fade-in 0.5s ease-in-out;
}

.custom-input.error {
  border-color: #ef4444;
}
.custom-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.custom-select.error {
  border-color: #ef4444;
}
.custom-select.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.custom-input.success {
  border-color: #10b981;
}
.custom-input.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.custom-select.success {
  border-color: #10b981;
}
.custom-select.success:focus {
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
  .form-section {
    padding: 1.5rem;
  }
  .race-category-card {
    margin-bottom: 1rem;
  }
}
/* LEAF */
.ag-format-container {
  width: 100%;
  margin: 0 auto;
}

.ag-leaf-block {
  overflow: hidden;
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 100;
}

#js-ag-leaf_box {
  height: 100vh;
  width: 100vw;
}

.js-ag-leaf {
  height: 25px;
  width: 31px;
  background: url(https://raw.githubusercontent.com/SochavaAG/example-mycode/master/pens/animation-leaf/images/leaf.png);
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }
}
@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
}/*# sourceMappingURL=custom.css.map */