@import url('./root.css');

.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.form-group label {
  flex: 1;
  text-align: right;
  padding-right: 10px;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
  flex: 2;
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid white;
  background: transparent;
  border-radius: 5px;
  color: white;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.form-name-coloumn {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.form-last-name,
.form-first-name {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  width: 100%;
}

.form-first-name {
  margin-right: 10px;
}

.form-last-name {
  margin-left: 5px;
}

.contact-section {
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
  color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.contact-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  opacity: 0.1;
}

.contact-container {
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background: linear-gradient(180deg, #000417 0%, #000626 100%);
}

.top-left-contact-container h2 {
  text-align: left;
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
  font-weight: 300;
  font-style: normal;
}

.top-left-contact-container p {
  font-weight: 300;
  width: 245px;
}

.bottom-left-contact-container h2 {
  text-align: left;
  background: var(--ea-green-to-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  margin-bottom: 15px;
  margin-top: 17px;
}

.bottom-left-contact-container p {
  font-weight: 300;
}

.para-2-3-4 {
  margin-top: -14px;
}

.form-submit-button {
  border-radius: 12px;
  border: 1px solid var(--ea-green);
  background: transparent;
  display: flex;
  justify-content: center;
  height: 43px;
  width: 166px;
  align-items: center;
  text-decoration: none;
  color: var(--ea-green);
  margin-top: 6px;
}

.form-button-div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-submit-button:hover {
  background: var(--ea-green);
  color: white;
}

.left-contact-container {
  width: 100%;
  height: 100%;
  /*padding-top: 58px;*/
  padding-bottom: 86px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  /*justify-content: center;*/
}

.right-contact-container {
  width: 100%;
  height: 100%;
  /*padding-top: 58px;*/
  padding-bottom: 53px;
  padding-left: 44px;
  padding-right: 44px;
  z-index: 10;
}
@media screen and (max-width: 770px) {
  .left-contact-container {
    align-items: center;
  }
}

@media screen and (max-width: 622px) {
  .contact-container {
    flex-direction: column;
  }

  .left-contact-container {
    padding-bottom: 32px;
  }

  .right-contact-container {
    padding-bottom: 32px;
  }
}
