* {
  color: white;
  overflow-x: hidden;
}

nav {
  background-color: transparent;
}

body {
  background-image: url("https://cdn.discordapp.com/attachments/803157757984636949/1114605590442950706/contacts-background.png");
  background-position: center;
  background-size: cover;
}

h1 {
  margin-top: 2rem;
}

.text-area {
  text-align: center;
}

#contact {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

#contact-info h4 {
  line-height: 1rem;
}

#contact-form-div {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
#contact-form-div form {
  width: 90%;
  background-color: #192033;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  overflow-y: hidden;
}

#inside-1 div h2 {
  margin-top: 1rem;
}

#form-first {
  overflow-y: hidden;
  background-color: #242c47;
  float: left;
  width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#form-first div {
  display: block;
  width: 90%;
}
#form-first div label {
  width: 100%;
}
#form-first div:nth-child(1) {
  margin-top: 30px;
}
#form-first div input {
  margin: 20px 15px 10px 15px;
  width: 100%;
  border: none;
  background-color: #242c47;
  border-bottom: solid 1px rgb(171, 171, 171);
  color: white;
  transition: 0.2s;
}
#form-first div input::-moz-placeholder {
  color: white;
}
#form-first div input::placeholder {
  color: white;
}
#form-first div input:focus {
  outline: none;
  border-bottom: solid 1px rgb(255, 255, 255);
  transition: 0.2s;
}
#form-first div textarea {
  background-color: #242c47;
  resize: none;
  outline: none;
  height: 200px;
  width: 100%;
  margin: 15px 15px;
  border: none;
  border-bottom: solid 1px rgb(171, 171, 171);
  color: white;
  transition: 0.2s;
}
#form-first div textarea::-moz-placeholder {
  color: white;
}
#form-first div textarea::placeholder {
  color: white;
}
#form-first div textarea:focus {
  outline: none;
  border-bottom: solid 1px rgb(255, 255, 255);
  transition: 0.2s;
}
#form-first div button {
  margin: 5px 15px 20px 15px;
  padding: 0.75vw 1vw;
}

#form-second {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#form-second:nth-child(2) {
  color: black;
}
#form-second:nth-child(2) h3 {
  margin-bottom: 0px;
}
#form-second div {
  text-align: left;
  overflow-y: hidden;
  height: 50px;
  margin: 10px 0px 10px 30px;
  width: 100%;
}
#form-second div span {
  color: #727c9f;
}

#contact-info {
  padding-bottom: 40px;
}
#contact-info h4 {
  margin-top: 10px;
}

.btn {
  border: solid 3px #50faab;
  border-radius: 10px;
  background-color: #50faab;
  color: black;
  padding: 10px 20px;
  margin: 2rem 0rem 0rem 0rem;
  transition: 0.2s;
}
.btn:hover {
  border: solid 3px #50faab;
  background-color: white;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.2s;
}

#myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
}
#myBtn i {
  color: #192033;
}

@media only screen and (max-width: 1500px) {
  #form-first {
    width: 100%;
  }
  #contact-form-div form {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 808px) {
  #contact-info h4 {
    line-height: 1rem;
  }
}/*# sourceMappingURL=contacts.css.map */