/* ------------------ LOGIN CARD ------------------ */
.login-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 20px auto;
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  animation: fadeIn 0.4s ease;
  text-align: left; 
}
.login-card h2 {
  margin-bottom: 5px;
  font-size: 24px;
  color: #222;
}

.subtitle {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

/* ------------------ INPUTS ------------------ */
.input-group {
  margin-bottom: 18px;
}

.input-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1.4px solid #ccd1d9;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.2s;
  background: #fafafa;
}

.input-group input:focus {
  border-color: #0066ff;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,102,255,0.25);
  outline: none;
}

/* ------------------ PASSWORD EYE ------------------ */
.password-group {
  position: relative;
}

.password-group i {
  position: absolute;
  right: 12px;
  top: 40px;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  transition: 0.2s;
}

.password-group i:hover {
  color: #000;
}

/* ------------------ BUTTON ------------------ */
.btn-login {
  width: 100%;
  padding: 12px;
  background: #0066ff;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.25s;
  text-align: center;
}

.btn-login:hover {
  background: #0057d6;
}

/* ------------------ LINKS ------------------ */
.links {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.links a {
  color: #0066ff;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

/* ------------------ ANIMATION ------------------ */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}