/* Import Open Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
  /* Define theme colors and settings */
  --primary-color: #4285F4;
  --primary-hover: #357ae8;
  --background-color: #ffffff;
  --border-color: #E5E7EB;
  --input-bg: #F9FAFB;
  --text-color: #333;
  --subtext-color: #555;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Container Styles */
.saas_7_chat_contact-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  font-family: 'Open Sans', sans-serif;
}

/* Heading Styles */
.saas_7_chat_contact-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 32px;
}

/* Paragraph Styles */
.saas_7_chat_contact-container p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--subtext-color);
}

/* Form Layout */
.saas_7_chat_contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Label Styling */
.saas_7_chat_contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

/* Input and Textarea Styling */
.saas_7_chat_contact-form input,
.saas_7_chat_contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  background-color: var(--input-bg);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

/* Focus State */
.saas_7_chat_contact-form input:focus,
.saas_7_chat_contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
  outline: none;
}

/* Textarea Specifics */
.saas_7_chat_contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Button Styling */
.saas_7_chat_contact-form button {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover */
.saas_7_chat_contact-form button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .saas_7_chat_contact-container {
    padding: 20px;
    margin: 30px auto;
  }
}
