@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

body,
html {
  font-family: "Poppins", sans-serif;
  /* height: 100%; */
  background-color: #f9fafb;
}

.login-card {
  margin-top: 250px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.bg-car {
  background-image: url("https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.form-input {
  transition: all 0.3s;
  padding-left: 2.5rem;
}

.form-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.login-btn {
  background: linear-gradient(to right, #4f46e5, #7e22ce);
  transition: all 0.3s;
}

.login-btn:hover {
  background: linear-gradient(to right, #4338ca, #6b21a8);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-card {
  margin: 2rem auto;
  min-height: calc(100vh - 80px - 4rem); /* Adjust based on navbar height */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Ensure the right column content is vertically centered */
.login-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.animated {
  animation: fadeIn 0.6s ease-out forwards;
}

.animated-delay-1 {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.1s forwards;
}

.animated-delay-2 {
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
}
