@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fafafa;
  min-height: 100vh;
  padding: 20px;
}

.order-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.back-link {
  position: absolute;
  left: 0;
  top: 10px;
  color: #0066FF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 0.7;
}

.logo-text {
  font-size: 48px;
  font-weight: 700;
  color: #0066FF;
  line-height: 0.9;
  letter-spacing: -1px;
  margin: 20px 0;
}

.flower-icon {
  color: #FF40C9;
  font-size: 36px;
  vertical-align: middle;
}

.order-form h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Space Grotesk", sans-serif;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0066FF;
  background-color: white;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

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 12px center;
  background-size: 20px;
  padding-right: 40px;
}

input[type="submit"] {
  background-color: #0066FF;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  font-family: "Space Grotesk", sans-serif;
}

input[type="submit"]:hover {
  background-color: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.form-success {
  text-align: center;
  font-size: 16px;
}

/* Responsive design */
@media (max-width: 640px) {
  .order-wrapper {
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
  }
  
  body {
    padding: 0;
  }
  
  .logo-text {
    font-size: 36px;
  }
  
  .order-form h2 {
    font-size: 24px;
  }
}