/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a, #10b981)!important;

}

#content {
  margin: auto;
}

/* Login Card */
.login-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  margin:auto;
}

/* Logo / SVG */
.login-card .logo {
  margin-bottom: 0rem;
}

.login-card .logo img {
  width: 80px;
  height: 80px;
}

/* Heading */
.login-card h2 {
  margin-bottom: 1rem;
  color: #111827;
}

/* Inputs */
.login-card input[type="email"],
.login-card input[type="password"],.login-card input[type="text"] {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  transition: 0.3s;
}

.login-card input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Login Button */
.login-card button {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  transition: 0.3s;
}

.login-card button:hover {
  background: #1e40af;
}

/* Links */
.login-card .links {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.login-card .links a {
  color: #2563eb;
  text-decoration: none;
  margin-left: 0.5rem;
}

.login-card .links a:hover {
  text-decoration: underline;
}

/* Optional social login buttons */
.social-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btns button {
  flex: 1;
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.social-btns .google {
  background: #ea4335;
}

.social-btns .apple {
  background: #000;
}

.social-btns button:hover {
  opacity: 0.85;
}

/* Responsive */
@media(max-width:500px) {
  .login-card {
    padding: 2rem 1.5rem;
  }
}