/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login Container */
.login-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 360px;
  animation: fadeIn 0.6s ease;
}

/* Form Container */
.form-container {
  text-align: center;
  color: white;
}

.form-container h1 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}

/* Form Groups */
.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 0.4rem;
  display: block;
}

.form-group input {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.2);
  color: white;
  outline: none;
  font-size: 0.95rem;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Button */
.form-actions {
  margin-top: 1rem;
}

.action-btn {
  width: 100%;
  padding: 0.8rem;
  background: #22c55e;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.action-btn:hover {
  background: #16a34a;
}

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