* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f1f4f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header img {
  width: 80px;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 20px;
  color: #333;
}

.container {
  background-color: #fff;
  width: 400px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
}

form input[type="email"],
form input[type="password"],
form button {
  width: 100%;
  padding: 12px;
  margin: 8px 0 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #005b96;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

form button:hover {
  background-color: #003f6b;
}

form .link {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.link a {
  color: #005b96;
  text-decoration: none;
}
footer {
      background-color: #003366;
      color: white;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }