* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #007ba7; /* teal blue background */
}

.login-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.login-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.login-box form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.login-box form input[type="email"],
.login-box form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.checkbox {
  margin-bottom: 15px;
}

.checkbox input {
  margin-right: 5px;
}

.login-box button {
  width: 100%;
  background-color: #005f73;
  color: white;
  padding: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.login-box button:hover {
  background-color: #004653;
}

.links {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9em;
}

.links a {
  color: #007ba7;
  text-decoration: none;
}
