/* Styles exclusively for the login page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 0.3;
    transform: translateY(0);
  }
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 1;
  transition: opacity 1s ease;
}

.login-wrapper {
  max-width: 416px;
  margin: 0 auto 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.large-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #d8d5d5;
  background-color: #f2f4f8;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 0.3;
  display: grid;

  opacity: 0;
  transform: translateY(-20px);

  animation: fadeInDown 1.2s ease forwards;
  animation-delay: 0.3s;
}

.inner-circle {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background-color: #e7e6e6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-box {
  background-color: white;
  border-radius: 6px;
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  margin: 1rem;

  opacity: 0;
  transform: translateY(20px);

  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.2s;
}

.login-logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-logo {
  max-width: 75%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.login-title,
.login-sub-text {
  text-align: center;
}

.login-title {
  margin: 0 0 0.5rem;
  font-size: 26px;
}

.login-sub-text {
  color: var(--neutral-dark);
  font-size: 1rem;
}

label {
  color: var(--neutral-dark);
  margin-top: 1.5rem;
  font-weight: 400;
}

body {
  background: linear-gradient(to bottom, #a6c0e3, #1e2a3a);
  height: 100vh;
  display: grid;
  place-items: center;
}
