@scope(.appointmentform){

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background-color: #f0f0f0;
  padding: 60px 40px;
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background: #f0f0f0;
  padding: 0;
}

h1 {
  font-size: 52px;
  text-align:center;
  font-weight: 300;
  color: #333;
  margin-bottom: 16px;
  margin:auto;
  letter-spacing: -1px;
}

.description {
  font-size: 16px;
  text-align: center;
  color: #666;
  font-style: italic;
  line-height: 1.4;
  margin:auto;
  margin-bottom: 50px;
  max-width: 600px;
}

.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 32px;
}

.form-group.half-width {
  width: calc(50% - 20px);
  margin-bottom: 32px;
}

label {
  font-size: 16px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 20px;
  border: none;
  background-color: #ffffff;
  /* border-radius: 12px; */
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s ease;
  resize: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

textarea {
  min-height: 120px;
  font-family: inherit;
}

.form-group.half-width textarea {
  min-height: 120px;
}

.submit-btn {
  background-color: #4169E1;
  color: white;
  border: none;
  padding: 18px 36px;
  font-size: 16px;
  /* border-radius: 8px; */
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background-color 0.2s ease;
  margin-top: 8px;
  display: inline-block;
}

.submit-btn:hover {
  background-color: #3557C7;
}

.submit-btn:active {
  background-color: #2A4BB8;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 40px 20px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  
  .form-group,
  .form-group.half-width {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    padding: 30px 16px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  .description {
    font-size: 14px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 16px;
    font-size: 16px;
  }

  .contact-form{
    padding: 0 40px;
  }
  
  .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}
}
