/* contact form styles */
.contact-wrapper { 
  position: relative;  
  height: 100%;
  color: #fff;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #dedede; 
  background-color: #f8f8f8;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contact-text {
  margin: 20px;
}

.contact-heading .contact-title {
  color: var(--60-background-white, #fff);
  max-width: 496px;
  margin-top: 4px;
}

.contact-heading .description {
  margin-top: 24px;
  color: var(--6030-light-neutrals-03, #ebecf0);
  max-width: 478px;
  width: 100%;
}

/* Container styles */
.form-container {
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 2px 24px 0px rgba(24, 117, 134, 0.12);
}

.form-container h2 {
  color: var(--Text-Heading, #1e1e1e);
  text-align: center;
  font-family: Rubik;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 16px;
}

.form-container p {
  color: var(--Text-Body, #4f4f4f);
  text-align: center;
  font-family: Roboto;
  line-height: 150%;
}
/* form */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form row */
.form-row {
  margin-top: 40px;
  display: flex; 
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Form column styles */
.form-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.form-column textarea{
  height: 120px;
}

.form-column.full-width {
  flex: none;
  width: 100%;
}

.form-column label {
  color: var(--Text-Heading, #1e1e1e);
  font-family: Roboto, sans-serif;
  line-height: 150%;
}

.form-column input,
.form-column textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--Stoke, #bdbdbd);
  border-radius: 6px;
  color: var(--Text-Body, #4f4f4f);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 120%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

/* Submit button */
.submit-button {
  width: 100%;
  padding: 18px 0;
  border-radius: 6px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  background: var(--primary--color, #00668d);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
}

.submit-button:hover {
  background-color: #00668d;
}

/* contact form styles */
.contact-wrapper { 
  padding: 0;
}

.contact-heading .contact-title {
  width: 100%;
}

/* form container styles */
.form-container {
  width: 100%;
  height:100%;
  padding: 40px;
}

/* Form row */
.form-row {
  margin-top: 0px; 
  width: 100%;
  box-sizing: border-box;
}

.form-column.full-width {
  width: 100%;
}
.contact-container {
  flex-direction: column;
  gap: 40px; 
  padding: 40px;
}

/* large mobile devices */
@media only screen and (min-width: 480px) and (max-width: 575px) {
  .form-container {
    padding: 10px;
  }
  .text {
    font-size: 14px;
  }
  .form-row {
    margin-top: 0px;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
}

/* mobile devices */
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .contact-container {
    padding: 10px;
  }
  .form-container {
    padding: 10px 10px;
  }
  .contact-text {
    font-size: 12px;
  }
  .form-row {
    margin-top: 0px;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
}
