* {
  margin: 0px;
  padding: 0px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f1525, #24205a, #171384);
  font-family: "Space Grotesk", sans-serif;
}

.error-msg {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: -14px;
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-msg.visible {
  opacity: 1;
}

.subtitle i {
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}


.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 420px;
  padding: 40px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: fadeUp 0.75s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container input {
  width: 75%;
  padding: 14px 18px;
  border: none;
  outline: none;
  border-radius: 14px;
  font-size: 1rem;
  background: #f7f0ff;
  box-sizing: border-box;
  margin-bottom: 18px;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
    font-family: "Space Grotesk", sans-serif;
}

.container input:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.container input::placeholder{
  font-family: "Space Grotesk", sans-serif;
}

.container h1 {
  color: #f7f0ff;
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: -20px;
  margin-bottom: 22px;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  /* background: linear-gradient(135deg, #ffffff, #e9d5ff); */
  background-color: #f7f0ff;
  color: #1f1a3b;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px) scale(1);
  background-color: #480de0;
  color: white;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
