@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");

:root {
  --black: #2c3e50;
}

* {
  box-sizing: border-box;
  color: var(--black);
}

body {
  font-family: "Poppins", "sans-serif";
  margin: 0;
  background: #ffe259; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #ffa751,
    #ffe259
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #ffa751,
    #ffe259
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  /* created a gradient via the usage of linear-gradient css function, 
      and set as background-image */
  min-height: 100vh;
  min-width: 100vw;
  overflow-x: hidden;
}

.non-underlined-link {
  text-decoration: none;
  color: inherit;
}

.brand-name {
  display: inline-block;
  margin-left: 20px;
  font-size: 3rem;

  animation: fadein;
  animation-duration: 1.5s;

  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: linear;
}

.brand-name:hover {
  transform: scale(1.05);
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

hr {
  margin: 0 auto;
  width: 98vw;
  border: 1px solid var(--black);
}

.secondary-content {
  width: 1000px;
  position: relative;
  top: 20px;
  margin: 0 auto;
  background-color: inherit;
  padding: 3%;
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 2%;

  animation-name: fadein;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: backwards;
}

.signup-heading {
  text-align: center;
  animation-name: fadein;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: backwards;
}

.social-media {
  width: 940px;
  display: block;
}

.social-media-login-btn {
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  padding: 10px;
  margin: 2% 2% 2% 25%;
  border: 2px solid #333;
  border-radius: 5px;
  color: white;
  font-size: 1.25em;
  width: 400px;
  text-align: center;

  transition-duration: 400ms;
  transition-property: transform;
}

.social-media-login-btn:hover {
  transform: scale(1.2);
}

.social-media-signup-btn {
  color: white;
}

#fb-btn {
  background-color: rgb(59, 89, 152);
  border: 2px solid rgb(59, 89, 152);
}

#fb-btn:focus {
  border: 1px solid white;
}

#google-btn {
  background-color: rgb(219, 68, 55);
  border: 2px solid rgb(219, 68, 55);
}

#google-btn:focus {
  border: 1px solid white;
}

#twitter-btn {
  background-color: rgb(29, 161, 242);
  border: 2px solid rgb(29, 161, 242);
}

#twitter-btn:focus {
  border: 1px solid white;
}

.secondary-content form {
  display: block;
  padding-left: 2%;
  position: relative;
  top: 55px;
}

.secondary-content form input {
  font-family: inherit;
  font-size: 1.4rem;
  border: 2px solid rgba(0, 0, 0, 0.5);
  display: block;
  width: 50%;
  padding: 10px 20px;
  margin: 20px auto;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
}

.secondary-content form input:focus {
  border: 2px solid rgba(255, 255, 0, 0.5);
}

.error-box {
  margin-left: 220px;
  font-size: 1.5em;
  color: red;
}

.submit-btn {
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  position: relative;
  left: 35%;
  padding: 1%;
  font-family: inherit;
  font-size: 2em;
  font-weight: 800;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  margin-bottom: 8%;

  transition-property: transform;
  transition-duration: 750ms;
}

.submit-btn:hover {
  background-color: #ffa751;
  transform: scale(1.1);
}

.horizontal-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.form-hr {
  margin-top: 20px;
  width: 400px;
  height: 0;
}

#alternate-option-txt {
  margin: 0 auto;
  font-size: 1.5em;
  font-weight: 800;
}

.footer-hr {
  position: relative;
  top: 90px;
}

.copyright-text-container {
  margin-top: 7%;
  font-size: 20px;

  animation: fadein;
  animation-delay: 1s;
  animation-duration: 2s;
  animation-fill-mode: backwards;
}

.copyright-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
