/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Login Card */
.login-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 100%;
  max-width: 380px;
}

/* Logo */
.logo {
  width: 90px;
  margin-bottom: 1rem;
}

/* Heading */
.login-card h2 {
  font-size: 1rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.login-card p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

/* Inputs */
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: border 0.3s;
}

input:focus {
  outline: none;
  border-color: #ff6600;
}

/* Button */
.btn {
  width: 100%;
  background: #ff6600;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #e05500;
}

/* Links */
.links {
  margin-top: 1rem;
}

.links a {
  color: #ff6600;
  font-size: 0.85rem;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #777;
}

/* Responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 2rem 1.5rem;
  }
}
