

body {
  background: linear-gradient(to right, #0a192f, #172a45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background: #fff;
  color: #333;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}

.container h1 {
  text-align: center;
  color: #0a192f;
  margin-bottom: 10px;
}

.tagline {
  text-align: center;
  margin-bottom: 25px;
  font-size: 14px;
  color: #666;
}
    
.order-form {
  display: flex;
  flex-direction: column;
}

.order-form label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #0a192f;
}

.order-form input,
.order-form textarea,
.order-form select {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  border-color: #00ff99;
  outline: none;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6);
}

.order-form textarea {
  min-height: 80px;
  resize: vertical;
}

.btn {
  background: #00a236;
  color: #0a192f;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #009051;
}

#h3 {

  color: #00ff99;
  border-color: #00ff99;


}


