body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url("../img/image-background.jpg") no-repeat center center fixed;
  background-size: cover;
}

.login-container {
  height: 100vh;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 10%;
}

.login-box {
  background-color: rgba(0, 32, 48, 0.85);
  padding: 40px 30px;
  border-radius: 15px;
  width: 300px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.login-box input {
  box-sizing: border-box;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 150px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border: none;
  border-radius: 20px;
  background-color: #fff;
  color: #003344;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #eee;
}

.remember {
  display: block;
  margin-top: 10px;
}

.links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
}

.links a {
  color: #ccc;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}
