@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300&display=swap");
.getRyuButton {
  color: white;
  background-color: #5345ff;
  padding: 10px;
  border: none;
}

.getRyuButton:hover {
  cursor: pointer;
  background-color: rgba(85, 69, 255, 0.831372549);
  box-shadow: 1px 1px 10px lightgray;
}

nav {
  display: flex;
  flex-wrap: wrap;
  height: 80px;
  align-items: center;
  padding: 0 10px;
  background-color: #f2f5fa;
  z-index: 1;
}
@media only screen and (min-width: 600px) {
  nav {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 350px) {
  nav {
    justify-content: center;
  }
}
nav .logo {
  display: flex;
  flex: 3;
  padding-left: 130px;
}
nav .logo h1 {
  display: block;
  padding-left: 10px;
  font-weight: bolder;
}
@media only screen and (max-width: 400px) {
  nav .logo {
    flex: 1;
  }
}
nav .logo .logo_Img {
  width: 60px;
}
@media only screen and (max-width: 400px) {
  nav .logo .logo_Img {
    width: 45px;
  }
}
@media only screen and (max-width: 340px) {
  nav .logo .logo_Img {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  nav .logo h1 {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  nav .logo {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 305px) {
  nav .logo {
    padding-left: none;
    display: flex;
    justify-content: center;
  }
}
nav .navlinks {
  flex: 3;
  padding-right: 180px;
}
@media only screen and (max-width: 900px) {
  nav .navlinks {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 350px) {
  nav .navlinks {
    display: flex;
    justify-content: center;
  }
}
nav .navlinks ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
nav .navlinks ul li {
  min-width: 70px;
  list-style: none;
}
nav .navlinks ul li button {
  min-width: 150px;
}

body {
  font-family: "Heebo", sans-serif;
  margin: 0;
  padding: 0;
}
body h1 {
  text-align: center;
}
body section {
  padding: 0 20vw;
}
@media only screen and (max-width: 400px) {
  body section {
    padding: 0 10vw;
  }
}

.signUpForm {
  text-align: center;
}

#authForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#authForm .inputField {
  width: 300px;
  text-align: center;
}
#authForm .inputField input {
  width: 250px;
  border: 1px solid gray;
  outline: none;
  padding: 15px;
  margin-bottom: 15px;
  transition-duration: 500ms;
}
#authForm .inputField input:focus {
  border: 2px solid #5345ff;
}
#authForm .inputField input:hover {
  border: 2px solid #5345ff;
}
#authForm .inputField textarea {
  resize: none;
}
#authForm .inputField textarea:focus {
  border: 2px solid #5345ff;
}
#authForm .inputField textarea:hover {
  border: 2px solid #5345ff;
}
#authForm .inputField img {
  height: 10px;
  position: absolute;
  margin: 4% 0 0 3%;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 40px 0;
  background-color: #183a7b;
}
footer h3 {
  color: #efede6;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  padding: 8px;
}
footer .getRyuButton:hover {
  background-color: none;
  box-shadow: none;
}

.elipseLoading {
  display: inline-block;
  position: relative;
  width: 80px;
}

.elipseLoading div {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.elipseLoading div:nth-child(1) {
  left: 8px;
  -webkit-animation: elipseLoading1 0.6s infinite;
          animation: elipseLoading1 0.6s infinite;
}

.elipseLoading div:nth-child(2) {
  left: 8px;
  -webkit-animation: elipseLoading2 0.6s infinite;
          animation: elipseLoading2 0.6s infinite;
}

.elipseLoading div:nth-child(3) {
  left: 32px;
  -webkit-animation: elipseLoading2 0.6s infinite;
          animation: elipseLoading2 0.6s infinite;
}

.elipseLoading div:nth-child(4) {
  left: 56px;
  -webkit-animation: elipseLoading3 0.6s infinite;
          animation: elipseLoading3 0.6s infinite;
}

@-webkit-keyframes elipseLoading1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes elipseLoading1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes elipseLoading3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes elipseLoading3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes elipseLoading2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
@keyframes elipseLoading2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}/*# sourceMappingURL=contact.css.map */