section{
  width: 65%;
}
section p{
  margin-bottom: 20px;
  font-size: 1.3em;
}

.contact-area {
  display: block;
  text-align: start;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 45%;
  min-width: 550px;
  z-index: 3;
}

.contact-area p {
    padding : 15px 55px 65px;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

form input, textarea {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  color: #ccc;
  width: 100%;
  margin: 10px 0;
  outline: 0;
  font-family: "Monterrat", sans-serif;
  font-size: 1.1em;
  resize: none;
  box-shadow: 6px 6px 10px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  padding : 15px;
  border-radius: 6px;
}
textarea {
  height: auto;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a4a4a4;
  font-size: 1.1rem;
  font-family: Offside;
}  

.checkbox {
  font-size: 0.8em;
  margin: 20px 0;

}
form input[type="checkbox"] {
  background-color: rgba(255, 255, 255, 0.2);
  width: 20px;
  box-shadow: 0 0 0 rgba(0, 0 , 0, 0);
  border: none;
  border-radius: 0px;
  float: left;
  margin: 3px 10px 0 0;
}

/* form .hidden {
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -10000px;
  width: 1px;
} */

.cgu {
  position: relative;
  color: #a7a7a7;
  line-height: 1.4em;
}
.cgu:hover {
  color: #aeaeae;
}
.cgu::before{
  content: "";
  position: absolute;
  background: #a0a0a0;
  width: 100%;
  height: 1px;
  bottom: -1px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.cgu:hover::before{
  transform-origin: 0 0;
  transform: scaleX(1);
}

form input[type="submit"] {
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  color: #111;
  font-size: 1.1rem;
  font-family: Offside;
  font-weight: bold;
  border: 0;
  transition: 0.2s;
  cursor: pointer;
}

form input[type="submit"]:hover{
  background-color: rgba(255, 255, 255, 0.5);
  color: #767676;
  font-size: 1.2rem;
}
