body {
  font-family: Arial, sans-serif;
  background-color: #f5f8ff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 320px;
  text-align: center;
}

h1 {
  color: #2a5db0;
  margin-bottom: 30px;
  font-size: 22px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 20px 0;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #2a5db0;
  outline: none;
}

button {
  width: 100%;
  padding: 12px 0;
  background-color: #2a5db0;
  color: white;
  font-size: 17px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #244a8a;
}

.links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.links a {
  color: #2a5db0;
  text-decoration: none;
  cursor: pointer;
}

.links a:hover {
  text-decoration: underline;
}

.error-message {
  color: red;
  margin-bottom: 15px;
  font-size: 14px;
}

.spacer {
  margin-top: 15px;
}
