body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  width: 100%;
  max-width: 820px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 2rem;
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.header img {
  max-height: 60px;
}

h2 {
  margin-top: 0;
  color: #003366;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

form{
  width: 300px;
}

input[type="email"],
input[type="password"] {
  width: 91.5%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #0077cc;
  outline: none;
}

button {
  width: 100%;
  padding: 0.75rem;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #005fa3;
}

.forgot {
  margin-top: 0.5rem;
  text-align: right;
}

.forgot a {
  font-size: 0.9rem;
  color: #0077cc;
  text-decoration: none;
}

.footer {
  border-top: 1px solid rgb(153, 153, 153);
  padding-top: 5px;

  text-align: right;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}
