body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding-top: 240px;
  padding-bottom: 110px;

}

.contact-center {
  position: relative;
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  align-items: center;
  padding: 0px 60px;
  height: 680px;
  width:100%
}

.contact-center .logo-scritta {
  position:absolute;
  width: 320px;
  right: 280px;
  bottom: 0;
}

.contact-center .wrapper {
  position: relative;
  display: flex;
  width: 540px;
  height: 620px;
  left: 10%;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.wrapper .form-box {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin-bottom: 40px;
  margin-top: 100px;
}

.form-box h2 {
  font-size: 60px;
  font-weight: bold;
  color: #8c07dd;
  margin: 0 0 10px 0; 
  letter-spacing: 4px;
  user-select: none;
  pointer-events: none;
}

.form-box .input-box {
  position: relative;
  width: 100%;
  height: 50px;
}

.form-box .input-box-short {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 50px;
}

.input-field{
  width: 520px;
  height: 52px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding-left: 22px;
  font-family: Poppins;
  font-size: 16px;
  box-shadow: 0 0 60px rgba(0,0,0,.2);
}

.input-field-short {
  width: 250px;
  height: 52px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding-left: 22px;
  font-family: Poppins;
  font-size: 16px;
  box-shadow: 0 0 60px rgba(0,0,0,.2);
}

.input-field-contact {
  width: 520px;
  height: 100px;
  border-radius: 30px;
  border: none;
  outline: none;
  padding-left: 22px;
  font-family: Poppins;
  font-size: 16px;
  box-shadow: 0 0 60px rgba(0,0,0,.2);
}

.input-box {
  position:relative;
  margin-bottom: 30px;
}

.input-box-short {
  position:relative;
  margin-bottom: 30px;
}

.input-box label {
  position:absolute;
  top: 14px;
  left: 22px;
  color: rgb(145, 145, 145);
  user-select: none;
  pointer-events: none;
  z-index: -1;
}

.input-box-short label {
  position:absolute;
  top: 14px;
  left: 22px;
  color: rgb(145, 145, 145);
  user-select: none;
  pointer-events: none;
  z-index: -1;
}

.contact-submit-form {
  vertical-align: top;
  font-size: 28px;
  background-color: #8C07DD;
  color: white;
  font-weight: bold;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  padding-left: 44px;
  padding-right: 44px;
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 33px;
  margin-top: 50px;
  box-shadow: 0px 0px 62px rgba(0,0,0,.2);
  cursor: pointer;
  user-select: none;

  transition: border-radius .3s,
              font-size .3s;  
}

.contact-submit-form:hover {
  border-radius: 37px;
  font-size: 30px;
}

.navigation-bottom {
  position: absolute;
  left: 62px;
  bottom: 50px;
}

.navigation-bottom a {
  font-size: 20px;
  font-weight: 100;
  color: #8C07DD;
  text-decoration: none;
  user-select: none;
}

.navigation-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #8C07DD;
  border-radius: 5px;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s;
}

.navigation-bottom a:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.short-input-container {
  display: flex;
  flex-direction: row;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  padding: 10px 10px;
  resize:none;
}

.contact-center .vl {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 3px;
  border-left: 3px solid #a214eeaf;
  border-radius: 2px;
  height: 640px;
  user-select: none;
  top: 50px;
  right: 160px;
}

.our-contacts {
  height: 600px;
  width: 39%;
  position: relative;
  display: flex;
  flex-direction: row;
  vertical-align: center;
  align-items: center;
  justify-content: space-between;
}

.phone-mail-contacts {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.phone-mail-contacts h2 {
  margin-right: 50px;
  font-weight: normal;
  font-size: 20px;
  color: #2f2f2f;
}

.icon {
  font-size: 20px;
  text-align: center;
  padding: 6px 10px 0 0;
  color: #2f2f2f;
}

.contact-container {
  display: flex;
  vertical-align: center;
  align-items: center;
}

.contact-container a {
  color: #2f2f2f;
}