.login-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #32323c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

.animated-modal {
  opacity: 0;
  transform: scale(0.95);
  animation: modalFadeIn 0.5s forwards;
}

.animated-modal.hide {
  animation: modalFadeOut 0.4s forwards;
}

@keyframes modalFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalFadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

.login-container {
  background: #32323c;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
  text-align: center;
  width: 350px;
  max-width: 90vw;
  margin: 0 auto;
}

.input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 0 15px;
  justify-content: center;
}

.input-group input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  padding: 16px 0 !important;
  height: 2.5em !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  font-size: 16px !important;
  color: #32323c !important;
  text-align: center !important;
}

.login-btn {
  width: 100% !important;
  padding: 18px 0 !important;
  height: 3em !important;
  border-radius: 12px !important;
  background: #e44c6f !important;
  color: #fff !important;
  border: none !important;
  font-size: 18px !important;
  margin-top: 10px !important;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background 0.2s;
  margin-bottom: 0;
  display: block;
}

.login-btn:hover {
  background: #c13b5c;
}

.profile-img {
  width: 50px;
  margin-bottom: 15px;
}

.login-container h2 {
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
}

/* Remove forgot-link style */
.forgot-link { display: none !important; } 