/* only for login page */
body {
  font-family: Arial, sans-serif;
  background: #f1f3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

input[type="email"], 
input[type="password"] {
  width: 94%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  background: #3498db;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #2980b9;
}

.remember {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin: 10px 0;
}

.links {
  text-align: center;
  margin-top: 15px;
}

.links a {
  color: #3498db;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    margin: 0 15px;
  }
  h2 {
    font-size: 20px;
  }
}
