/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f0f2f5;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
}

.login-container h1 {
  margin-bottom: 24px;
  font-weight: 700;
  color: #1877f2;
  font-size: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input[type="text"],
input[type="password"] {
  padding: 12px 15px;
  border: 1.5px solid #ccd0d5;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: #1877f2;
  box-shadow: 0 0 5px rgba(24, 119, 242, 0.4);
}

button {
  background-color: #1877f2;
  border: none;
  color: white;
  font-size: 17px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #145dbf;
}

.footer-text {
  margin-top: 20px;
  font-size: 14px;
  color: #606770;
}

@media (max-width: 400px) {
  .login-container {
    width: 90%;
    padding: 30px 20px;
  }
}
