/* Josefin Sans */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500&display=swap");

* {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}
body {
  background-color: #252945;
}

/* APP Styles */

.logo img {
  width: 170px;
}
.za-navbar {
  padding: 10px 0;
  background-color: #3b1d7e !important;
}
.za-navbar .nav-link {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.main-section {
  padding: 80px 0;
}
.editor-textarea {
  width: 100%;
  min-height: 450px;
  max-height: 450px;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  -webkit-appearance: none;
  border: 0;
  background-color: #ddd;
  border-radius: 4px;
  padding: 20px;
}

.submit-button {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 12px 20px;
  background: #4ec044;
  color: #252945;
  display: block;
  width: 100%;
  margin-top: 30px;
}
.submit-button:hover,
.submit-button:focus {
  background: #3d9e34;
  color: #252945;
  outline: 0;
}
.feedback {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 0;
  margin-top: 30px;
  letter-spacing: 0.6px;
  font-weight: 500;
}
.template-form .form-select {
  background-color: #ddd;
  padding: 8px 10px;
}
.heading {
  font-size: 18px;
  letter-spacing: 0.6px;
}

/* Mobile only CSS */
@media only screen and (max-width: 480px) {
  .main-section {
    padding: 20px 0;
  }
  .editor-textarea {
    min-height: 250px;
    max-height: 250px;
    padding: 10px;
  }
  .button-wrapper {
    margin-top: 10px;
  }
  .heading {
    font-size: 14px;
  }
}
