/* GLOBAL */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: #f7f7f7;
  color: #1A1A1A;
}

/* HEADINGS — match Hostinger primary font */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 500;
}

/* PAGE WRAPPER */
.page-wrapper {
  padding-top: 40px;
}

/* PROGRESS BAR */
.progress {
  width: 100%;
  height: 4px;
  background: #E0E0E0;
  margin-top: 12px;
}

.progress-bar {
  height: 4px;
  width: 0%;
  background: #2E7D32;
  transition: width 0.3s ease;
}

/* CARD */
.card {
  max-width: 600px;
  margin: 24px auto;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* FORM ELEMENTS */
label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #DDD;
  font-size: 16px;
  background: #FFF;
  color: #1A1A1A;
}

/* BUTTONS */
#app button {
  width: 100%;
  padding: 14px 20px;
  margin-top: 24px;
  background: #2E7D32; 
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s ease;
}

#app button:hover {
  background: #000000;
}

#app button.secondary {
  background: #E0E0E0;
  color: #333;
}

#app button.secondary:hover {
  background: #CFCFCF;
}

/* APP CONTAINER */
#app {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
}

/* LOADER */
.loader {
  border: 4px solid #E0E0E0;
  border-top: 4px solid #2E7D32;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .card {
    margin: 16px;
    padding: 20px;
  }
}