/* General style sheet shared by all pages */

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Company Logo Styling */
.logo {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  max-width: 300px;
  margin: 0 auto;
}

.logo img {
  max-width: 100%; /* Ensure the image width never exceeds the container width */
  max-height: 100%; /* Ensure the image height never exceeds the container height */
  display: block; /* Remove any default spacing or margins on the image */
  width: 100%; /* Make sure the image takes the full width of the container */
  height: auto; /* Allow the image to adjust its height proportionally */
}
/* Company Logo Styling */

body {
  font-family: "Nunito", sans-serif;
  color: #384047;
  background-color: black;
}

form {
  max-width: 300px;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 8px;
}

h1 {
  margin: 0 0 30px 0;
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  margin-bottom: 30px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

button {
  padding: 19px 39px 18px 39px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  background-color: #dc5544;
  border: 1px solid #dc5544;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.1) inset;
  margin-bottom: 10px;
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

@media screen and (min-width: 480px) {
  form {
    max-width: 480px;
  }
}

/* Page Header Styles - Shared across multiple pages */
.page-header-area {
  padding: 100px 0 80px;
  background-image: url("/img/ardian-lumi-6Woj_wozqmA-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

.page-header-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .page-header-area {
    padding-top: 180px;
  }
}
