

/* Form container */
.form-container {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.5rem;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #007bff;
  outline: none;
}

.name-container {
  display: flex;
  gap: 10px;
}

.name-container input {
  width: 48%;
}

.terms {
  font-size: 1.2rem;
  margin-top: 12px;
  display: block;
}

.terms span {
  margin-left: 10px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 16px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Responsive styling */
@media (max-width: 768px) {
  .form-container {
    padding: 15px;
  }

  .name-container {
    flex-direction: column;
  }

  .name-container input {
    width: 100%;
  }
}

.pp-icon img{
    border-radius: 25px;
    min-width: 48%;
    max-width: 48%;
}


.order-summary {
  width: 100%;
  max-width: 600px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: left;
}

.order-summary h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.order-summary p {
    font-family: -apple-system, Arial;
  font-size: 1.25rem;
  margin: 10px 0;
  color: #555;
}

.order-summary h3, .order-summary h4 {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #333;
}

.item {
  margin-bottom: 20px;
}

strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .order-summary {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .order-summary h2 {
    font-size: 1rem;
  }

  .order-summary p, .order-summary h3, .order-summary h4 {
    font-size: 0.9rem;
  }
}

