html {
  font-family: "Poppins", "Arial", sans-serif;
  font-size: 16px;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

h2 {
  color: #1172E8;
  font-size: 22px;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(to bottom right, rgba(93, 63, 211, 0.75), rgba(69, 99, 255, 0.75)) fixed;
  text-align: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 50px;
  flex-grow: 1;
}

#logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 16px;
  box-shadow: 10px 10px 3px rgba(93, 63, 211, 0.9);
  background: #FEFEFA;
  width: 1100px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 16px;
  box-shadow: 10px 10px 3px rgba(93, 63, 211, 0.9);
  background: #FEFEFA;
  width: 500px;
  height: 100%;
}

#footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

#logo {
  width: 400px;
  height: auto;
}

#footer a {
  color: black;
}
#footer a:hover {
  color: #FEFEFA;
}

.fake-link {
  color: #1172E8;
  transition: color 0.2s linear;
  font-size: 12px;
}

.fake-link:hover {
  cursor: pointer;
  color: #72B3FF;
}

.no-opacity {
  opacity: 0;
}

.no-display {
  display: none;
}

.button {
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  padding: 7px;
  min-width: 100px;
  width: 125px;
  color: #FEFEFA;
  background: #1172E8;
  transition: all 0.3s ease-out;
  font-weight: bold;
  font-size: 16px;
}

.button:hover {
  background: #72B3FF;
  scale: 1.05;
  cursor: pointer;
}
.button:disabled {
    background: #999999;
}
.button:disabled:hover {
    scale: 1;
    cursor: default;
}

.invalid-input {
  border: 2px solid #FF2F2F;
  animation: shake 0.1s linear;
  animation-iteration-count: 3;
}

.valid-input {
  border: 2px solid green;
}

#join-page-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  width: 1100px;
  align-items: flex-start;
}

.content-container-header {
  background-color: lightgrey;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  color: #1172E8;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.content-container-body {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.content-container-body > form > div, .content-container-body > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  width: 90%;
  line-height: 40px;
}

.content-container-body > form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.line {
  flex-grow: 1;
  border-bottom: 1px solid #E2E2E2;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 15px;
}

#display-name-input {
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  height: 25px;
  max-width: 200px;
  flex-grow: 1;
  padding-left: 10px;
  font-size: 16px;
  font-family: "Poppins", "Arial", sans-serif;
}

#join-button {
  align-self: flex-end;
}

#tcs-input {
  width: 20px;
  height: 20px;
}

#display-name-label {
  text-wrap: nowrap;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1100px) {
  #join-page-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 90%;
  }

  .content-container {
    width: 90%;
  }

  #logo {
    width: 50%;
  }

  #logo-container {
    width: 90%;
  }

  #display-name-input {
    font-size: 12px;
  }

  #join-content-container {
    order: 1;
  }

  #details-content-container {
    order: 2;
  }
}

/*# sourceMappingURL=site.css.map */
