html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  font-family: 'PostGrotesk-Book', sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: black;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.67;
  font-weight: normal;
}

.logo img {
  max-height: 60px;
}

.container {
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #efefda;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.logo img {
  max-height: 60px;
}

.address {
  text-align: right;
}

form {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  margin-bottom: 10px;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

label {
  margin-bottom: 0rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0rem;
  transition: border-color 0s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #a51c30;
  outline: 0;
  box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25);
}

.text-color-brown {
  color: #a51c30;
}

h3 {
  position: relative;
  margin-top: 2rem;
  color: #a51c30;
  font-weight: 700;
}

/* h3::after {
  content: '';
  display: block;
  width: 25%;
  height: 3px;
  background: #a51c30;
  position: absolute;
  bottom: 0;
  left: 0;
} */

.btn-submit {
  color: #fff;
  background-color: #a51c30;
  border-color: #a51c30;
}

.btn-submit:hover {
  color: #fff;
  background-color: #a51c30;
  border-color: #fff;
}

.btn-submit:focus {
  color: #fff;
  background-color: #a51c30;
  border-color: #fff;
}

/* color: #a51c30; */

.file-preview {
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.file-image {
  width: 100px;
  height: 100px;
  border: 1px solid #ccc;
}

.remove-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: transparent;
  border: none;
  color: white;
  background-color: #a51c30;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.file-preview:hover .remove-button {
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top: 4px solid #3498db;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.thanks-message {
  text-align: center;
  width: 50%;
  padding: 50px;
  border-radius: 0px;
}

.thanks-message img {
  width: 70%;
}

.thanks-message h1 {
  font-size: 36px;
  color: #333;
}

.thanks-message p {
  font-size: 18px;
  color: #555;
}

.radio-group {
  display: flex;
  justify-content: flex-start;
}

.form-check-input[type='radio'] {
  width: 1.5rem;
  height: 1.5rem;
}

.form-check-label {
  margin-left: 1rem;
  margin-top: 0.285rem;
  margin-right: 1.5rem;
}

@media screen and (max-width: 768px) {
  .thanks-message {
    text-align: center;
    width: 100%;

    border-radius: 0px;
  }

  .thanks-message img {
    width: 100%;
  }
}
