body {
   font-family: 'Poppins', sans-serif;
   background: linear-gradient(135deg, #1b2845, #3b8d99);
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   overflow: hidden;
}

.login-card {
   background: rgba(255, 255, 255, 0.15);
   backdrop-filter: blur(15px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 1rem;
   padding: 2rem 2.5rem;
   color: #fff;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
   max-width: 420px;
   width: 100%;
   animation: fadeIn 1s ease;
}

.login-card img {
   margin-bottom: 1rem;
   border-radius: 50%;
}

.input-group {
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 10px;
   overflow: hidden;
   background-color: rgba(255, 255, 255, 0.9);
}

.input-group-text {
   background-color: transparent !important;
   border: none !important;
   font-size: 1.2rem;
   color: #555;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 45px;
}

.form-control {
   border: none !important;
   box-shadow: none !important;
   height: 50px;
   font-size: 0.95rem;
   padding-left: 0.5rem;
   background-color: transparent !important;
}

.form-control:focus {
   outline: none !important;
   box-shadow: none !important;
}

.btn-dark {
   background-color: #2d3436;
   border: none;
   border-radius: 8px;
   padding: 0.75rem;
   transition: all 0.3s ease;
   font-weight: 500;
}

.btn-dark:hover {
   background-color: #000;
   transform: scale(1.03);
}

.text-dark {
   color: #e0e0e0 !important;
}

.reset-link {
   color: #b8daff;
   font-size: 0.9rem;
   text-decoration: none;
   transition: color 0.3s;
}

.reset-link:hover {
   color: #fff;
   text-decoration: underline;
}

.toggle-password {
   cursor: pointer;
   user-select: none;
}

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

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

@media (max-width: 576px) {
   .login-card {
      padding: 1.5rem;
   }
}