/* assets/style.css */

body {
  background: #f0f2f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-box h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #333;
  text-align: center;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #0066cc;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #004d99;
}

.login-footer {
  text-align: center;
  margin-top: 15px;
}

.login-footer a {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
}

.error {
  background: #ffe6e6;
  border: 1px solid #cc0000;
  padding: 10px;
  color: #cc0000;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.success {
  background: #e6ffe6;
  border: 1px solid #00aa00;
  padding: 10px;
  color: #008000;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}
