body {
  background: #f5f7f9;
}

.contact-page {
  min-height: 100vh;
  padding: 120px 16px 40px;
  padding-top: 90px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}

.contact-page .form {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  padding: 24px 22px 26px;
}
@media (min-width: 768px) {
  .contact-page .form {
    padding: 30px 32px 32px;
  }
}

.heading {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #1F1F1F;
}
@media (min-width: 768px) {
  .heading {
    font-size: 26px;
  }
}

.or-login {
  margin: 0 0 6px;
  font-size: 14px;
  color: #555;
}
.or-login a {
  color: #13c265;
  font-weight: 500;
  text-decoration: none;
}
.or-login a:hover {
  text-decoration: underline;
}

.inputs-labels {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inputs-labels label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1F1F1F;
}

.inputs-labels input,
.inputs-labels textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  font-size: 16px !important;
  outline: none;
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.inputs-labels input:focus,
.inputs-labels textarea:focus {
  border-color: #13c265;
  box-shadow: 0 0 0 2px rgba(19, 194, 101, 0.12);
}

.inputs-labels textarea {
  resize: vertical;
  min-height: 120px;
}

.alert {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 10px;
}

.alert-success {
  background: #e8f6ef;
  border: 1px solid #b5e3ca;
  color: #20623d;
}

.alert-danger {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #b3261e;
}

.form-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

.form-actions button {
  outline: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #13c265;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.form-actions button:hover {
  background: rgb(16.2704225352, 166.1295774648, 86.4901408451);
  box-shadow: 0 8px 20px rgba(19, 194, 101, 0.24);
  transform: translateY(-1px);
}
.form-actions button:active {
  transform: translateY(0);
  box-shadow: none;
}

.image {
  max-width: 760px;
  margin-top: 25px;
}
.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
  .contact-page {
    min-height: 100vh;
    padding: 120px 16px 40px;
    padding-inline: 50px;
    padding-top: 130px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    gap: 35px;
  }
  .contact-page .image {
    margin: 0;
  }
}/*# sourceMappingURL=contact.css.map */