@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  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(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

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

body {
  color: white;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  padding: 25px;
  height: 750px;
  animation: popanimation 1.25s ease;
}

.left {
  flex: 2;
  background: #f8f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 25px;
}

.left .right {
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.right {
  flex: 1;
  background: #3376db;
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-container {
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 30px;
  height: auto;
  margin: 15px;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: slidedownanimation 0.75s ease forwards;
  animation-delay: 0.2s;
}

.login-container h1 {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 25px;
  font-weight: bold;
  opacity: 0;
  animation: slidedownanimation 0.75s ease forwards;
  animation-delay: 0.65s;
  font-size: 50px;
}

.login-footer {
  margin-top: auto;
}

input,
label {
  opacity: 0;
  animation: popanimation 1s ease forwards;
  animation-delay: 0.65s;
}

button {
  opacity: 0;
  animation: slideupanimation 0.65s ease forwards;
  animation-delay: 0.75s;
}

.title-container h1 {
  font-weight: bold;
}

.title-container {
  border-radius: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(237, 187, 108);
  min-height: 95%;
  min-width: 95%;
  padding: 15px;
  margin: 15px auto;
}

.button-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.btn.mb-3.btn-primary.login {
  padding: 10px 75px;
  font-size: 27px;
}

.signup-container {
  text-align: center;
  opacity: 0;
  animation: popanimation 1s ease forwards;
  animation-delay: 0.75s;
}
