@import "@fontsource/open-sans";

* {
  box-sizing: border-box;
}

@keyframes popanimation {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slidedownanimation {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes slideupanimation {
  from {
    opacity: 0;
    transform: translateY(35%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes slideleftanimation {
  from {
    opacity: 0;
    transform: translateX(-2%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

h1 {
  font-weight: bold;
  padding: 15px;
  padding-bottom: 25px;
  font-size: 57px !important;
}

.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 50vh;
  animation: popanimation 1.05s ease;
  margin: 0 auto;
  padding-top: 50px;
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.register-container {
  background-color: white !important;
  width: 65%;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 0px 25px 1px rgb(0, 0, 0, 0.5);
  margin: 0 auto;
}
h1 {
  text-align: center;
  opacity: 0;
  animation: slidedownanimation 1s ease forwards;
  animation-delay: 0.25s;
}

.register-container input,
.input-group-text {
  opacity: 0;
  animation: slideupanimation 1s ease forwards;
  animation-delay: 0.35s;
}

.form-label,
.form-text {
  opacity: 0;
  animation: popanimation 1s ease forwards;
  animation-delay: 0.5s;
}

.form-text {
  padding-left: 25px;
}

.input-group {
  max-width: 95%;
  max-width: 750px;
  margin: 0 auto;
}
.button-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.btn.mb-3.btn-primary.sign-up {
  padding: 10px 50px;
  font-size: 25px;
  opacity: 0;
  animation: popanimation 1s ease forwards;
  animation-delay: 0.5s;
}

.login-container {
  text-align: center;
  padding-bottom: 15px;
  opacity: 0;
  animation: slidedownanimation 1s ease forwards;
  animation-delay: 0.5s;
}
