body {
  background-color: #f0f2f5;
  font-family: Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 400px;
}

.login-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-align: center;
}

.fb-logo {
  color: #1877f2;
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background-color: #1877f2;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #166fe5;
}

hr {
  margin: 20px 0;
}

.forgot {
  display: block;
  margin-top: 10px;
  color: #1877f2;
  font-size: 14px;
  text-decoration: none;
}

.new-account {
  background-color: #42b72a;
  margin-top: 0;
}

.new-account:hover {
  background-color: #36a420;
}

