* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(
    135deg,
    #c886ff 0%,
    #357cff 50%,
    #fbcfe8 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 20px;
}

.login-card {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  text-align: center;
  color: #9e8bb9;
}

.login-card h2 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 24px;
  color: #ece9f1;
}

.login-card p {
  font-size: 14px;
  margin-bottom: 28px;
  opacity: 0.9;
  color: #3e26c5;
}

.input-field {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: none;
  outline: none;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
}

.btn-login {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  background: linear-gradient(
    135deg,
    #8b5cf6,
    #5848ec
  );
  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-login:active {
  transform: scale(0.97);
}

.footer-text {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.85;
  color: #431372;
}