/* [project]/app/components/PrescriptionForm.module.css [app-client] (css) */
.PrescriptionForm-module__wsLUBa__form {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px;
  margin: 20px 0;
  padding: 35px 40px;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.PrescriptionForm-module__wsLUBa__form:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}

.PrescriptionForm-module__wsLUBa__form h2 {
  color: #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-bottom: none;
  margin-bottom: 25px;
  padding-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 600;
}

.PrescriptionForm-module__wsLUBa__formGroup {
  margin-bottom: 24px;
}

.PrescriptionForm-module__wsLUBa__formGroup label {
  color: #333;
  letter-spacing: .3px;
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 600;
  display: block;
}

.PrescriptionForm-module__wsLUBa__formGroup input, .PrescriptionForm-module__wsLUBa__formGroup select {
  box-sizing: border-box;
  color: #333;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  transition: all .3s;
}

.PrescriptionForm-module__wsLUBa__formGroup input:focus, .PrescriptionForm-module__wsLUBa__formGroup select:focus {
  border-color: #667eea;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, .1);
}

.PrescriptionForm-module__wsLUBa__formGroup input::placeholder {
  color: #9ca3af;
}

.PrescriptionForm-module__wsLUBa__submitButton {
  color: #fff;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, .4);
}

.PrescriptionForm-module__wsLUBa__submitButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, .6);
}

.PrescriptionForm-module__wsLUBa__submitButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(102, 126, 234, .4);
}

@media (max-width: 768px) {
  .PrescriptionForm-module__wsLUBa__form {
    padding: 25px 20px;
  }

  .PrescriptionForm-module__wsLUBa__form h2 {
    font-size: 1.5rem;
  }

  .PrescriptionForm-module__wsLUBa__formGroup label {
    font-size: .9rem;
  }

  .PrescriptionForm-module__wsLUBa__formGroup input, .PrescriptionForm-module__wsLUBa__formGroup select {
    padding: 12px 14px;
    font-size: 14px;
  }

  .PrescriptionForm-module__wsLUBa__submitButton {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__container {
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
}

.page-module__E0kJGG__title {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  letter-spacing: -.5px;
  margin: 20px 0 15px;
  font-size: 3rem;
  font-weight: 700;
}

.page-module__E0kJGG__subtitle {
  color: rgba(255, 255, 255, .9);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  margin: 0 0 40px;
  font-size: 1.2rem;
  font-weight: 400;
}

.page-module__E0kJGG__loading {
  text-align: center;
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  padding: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.page-module__E0kJGG__spinner {
  border: 4px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: 1s linear infinite page-module__E0kJGG__spin;
}

@keyframes page-module__E0kJGG__spin {
  to {
    transform: rotate(360deg);
  }
}

.page-module__E0kJGG__error {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  margin: 20px 0;
  padding: 20px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(245, 87, 108, .3);
}

@media (max-width: 768px) {
  .page-module__E0kJGG__container {
    justify-content: flex-start;
    padding: 20px 15px;
  }

  .page-module__E0kJGG__title {
    margin: 15px 0 10px;
    font-size: 2rem;
  }

  .page-module__E0kJGG__subtitle {
    margin: 0 0 30px;
    font-size: 1rem;
  }

  .page-module__E0kJGG__loading {
    padding: 20px;
    font-size: 1rem;
  }

  .page-module__E0kJGG__spinner {
    width: 35px;
    height: 35px;
  }
}

/*# sourceMappingURL=app_eb52881b._.css.map*/