body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f78021;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.logo {
  width: 140px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 25px;
  color: #333;
  font-weight: 500;
}

input[type="text"],
input[type="password"] {
  width: 85%;
  padding: 6px 10px; /* smaller padding = smaller box */
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  background-color: #f9f9f9;
  outline: none;
  transition: border 0.3s ease;
  font-size: 16px;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #f78021;
  background-color: #fff;
}



.options {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
  color: #555;
  margin-bottom: 25px;
}

button {
  width: 100%;
  padding: 12px;
  background: #f78021;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #e16f1b;
}

@media (max-width: 480px) {
  .login-box {
    width: 80%;
    padding: 30px 20px;
  }

  .logo {
    width: 120px;
  }

  h2 {
    font-size: 18px;
  }

  button {
    font-size: 14px;
  }
}
