@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: Montserrat, sans-serif;
}

.contact-form-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-top: 60px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure spacing on smartphones */
@media (max-width: 768px) {
  .contact-form-container {
    margin-left: 15px; /* Add space on the left */
    margin-right: 15px; /* Add space on the right */
  }
}

.contact-form-container h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-form-container p {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.row {
  display: flex;
  justify-content: space-between;
}

.col {
  width: 32%;
}

.btn-success {
  width: 100%;
  padding: 10px;
  color: #fff !important;
  background: #dbb12d;
  border-color: #dbb12d;
  border-radius: 5px;
}

.btn-success:hover {
  color: #dbb12d !important;
  background: white;
  border-color: #dbb12d;
  border-radius: 5px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  outline: 0 none;
}

.form-control:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  outline: 0 none;
}
