body {
  background-color: #f6f9fc;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 3em auto;
  padding: 3em;
  line-height: 1.5;
}

.logo {
  position: relative;
}

.client-logo {
  position: relative;
}

.navigation {
  position: absolute;
  right: 1rem;
  top: 10px;
  left: 10px;
  max-width: 200px !important;
}

.navigation {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  width: 50%;
}

.navigation a {
  text-decoration: none;
  color: #32325d;
  padding: 10px 20px;
}

.navigation a:hover {
  background-color: #f6f9fc;
}

.hamburger-menu {
  display: none;
}

.content {
  max-width: 50rem;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.content input[type="text"],
.content select {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #b8b8b8;
  border-radius: 0.5rem;
}

.content input[type="submit"] {
  background-color: #6772e5;
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
}

.content input[type="submit"]:hover {
  background-color: #5469d4;
}

.content p {
  margin-bottom: 1rem;
  color: #6b7c93;
}

#drop_zone {
  border: 2px dashed #bbb;
  border-radius: 0.5rem;
  width: 18.75rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #bbb;
  font-size: 1rem;
  text-align: center;
}

#file_upload {
  display: none;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}

.form-label {
    width: 40%;
}

.form-required-label {
    width: 40%;
    font-weight: bold;
}

.form-input {
    width: 50%;
    height: 2rem;
    margin-bottom: 10px;
}

select {
  appearance: menulist-button;
  height: 2rem;
}

textarea {
  margin-bottom: 10px;
}

#submit-button {
  width: 28% !important;
  height: 48px !important;
  background-color: #0054a6;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

#submit-button:hover {
  background-color: #004387;
}


@media screen and (max-width: 48rem) {
.navigation.active {
  display: flex;
}

.content {
  margin: 0 auto;
}

.form-input {
    width: 100%;
    height: 2rem;
    margin-bottom: 10px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px #ddd;
}

.form-wrapper input {
  width: 100%;
  height: 25px;
  padding: 1.5rem;
  margin-bottom: .5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.form-wrapper input:focus {
  outline: none;
  border-color: #0077ff;
}

.input {
  width: 100%;
  height: 25px;
  padding: .5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.form-wrapper a {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-decoration: underline;
  color: #0077ff;
}

#submit-button {
  width: 100% !important;
}

.checkbox {
    position: relative;
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 0;
    vertical-align: baseline;
    font-style: normal;
    min-height: 17px;
    font-size: 1rem;
    line-height: 17px;
    min-width: 17px;
}


@media only screen and (max-width: 768px) {

  .navigation {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
  }

  .navigation.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 6.25rem;
    right: 1rem;
    background-color: #fff;
    width: 12.5rem;
    padding: 1rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
  }

  .navigation.active a {
    text-align: center;
    margin-bottom: 1rem;
  }

  .hamburger-menu div {
    width: 1.875rem;
    height: 0.1875rem;
    background-color: #32325d;
    margin: 0.3125rem;
  }
  .csrf {
    visibility: hidden;
    display: none;
  }

  .hamburger-menu {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  /* Add styles for the active class */
  .navigation.active {
    display: block;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: white;
    width: 200px;
    height: 100%;
    padding: 20px;
    box-shadow: 2px 2px 10px #ccc;
    border-radius: 10px;
  }

  .navigation a {
    display: block;
    margin: 10px 0;
    text-align: center;
  }

  .navigation a:hover {
    background-color: #eee;
  }

  .hamburger-menu div {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 5px;
  }
}
}


