@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

body {
  background: #f2f2f2;
  color: #222;
  font: 16px "Poppins", sans-serif;
  margin: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

.container {
  margin: auto;
  max-width: 700px;
  padding: 24px 24px 100px;
}

.header {
  margin-bottom: 20px;
}

.header > a > img {
  height: 60px;
  width: auto;
}

.header h1 {
  color: #5aac4e;
  font-size: 32px;
  line-height: 125%;
  margin: 20px 0 0;
  width: 100%;
}

.header h1 span {
  color: #234821;
  font-size: 24px;
  font-weight: normal;
  display: block; 
  margin-bottom: 4px;
}

.details {
  padding: 25px;
  background: rgba(90, 172, 78, 0.2);
  border-radius: 12px;
  margin-bottom: 30px;
  text-align: left;
}

.details h2 {
  color: #234821;
  margin-top: 0;
  text-align: center; 
}

.details ul {
  margin-bottom: 0;
  padding-left: 25px;
}

.details ul li {
  margin-top: 8px; 
}

.details ul li b {
  color: #234821;
}

.content p {
  margin: 0 0 15px;
}

.content .contact-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.content .row {
  margin-bottom: 12px;
}

.content .row > input {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 5px;
  font: 16px "Poppins", sans-serif;
  outline: 0;
  padding: 16px 20px;
  width: 360px;
  transition: border-color .2s all;
}

.content .row > input:hover {
  border-color: #bbb; 
}

.content .row > input:focus,
.content .row > input:focus-visible {
  border-color: rgba(35, 72, 33, 0.8); 
}

.content .row .btn {
  background: rgba(35, 72, 33, 0.8);
  border: 0;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font: 16px "Poppins", sans-serif;
  margin-top: 12px;
  padding: 12px 24px;
  transition: all .2s ease;
  width: 200px;
}

.content .row .btn:hover {
  background: rgba(35, 72, 33, 0.6);
}

.content .row .btn:active {
  background: rgba(35, 72, 33, 1);
}

.content .row .btn[disabled] {
  pointer-events: none;
  opacity: .4;
}

.contact-form .messages .--success,
.contact-form .messages .--error {
  padding: 16px 20px;
  margin-bottom: 20px;
  line-height: 125%;
  font-size: 14px;
  font-weight: 600;
  color: #316822;
  border: 1px solid #316822;
  background: #e3e9e4;
  border-radius: 4px;
}

.contact-form .messages .--error {
  color: #ea1600;
  border-color: #ea1600;
  background: #f3e0e0;
}

.form-group {
  display: block;
  margin: 24px 0 12px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #5aac4e;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin: -2px 12px 0 0;
}

.form-group input:checked + label:before {
  background: #5aac4e;
}

.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer {
  background: #234821;
  color: #fff;
  font-size: 14px;
  padding: 16px 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer a {
  color: #fff; 
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 24px 24px 105px;
  }
  
  .header > img {
    height: 60px;
  }
  
  .header h1 {
    font-size: 24px;
    margin: 30px 0 0;
  }
  
  .content .row > input {
    width: 100%; 
  }
}