/* ============================================
   Qiara ERP — Login Page
   ============================================ */

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

.login-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 360px;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.input-group {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

.input-group i {
  color: #999;
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  background: #f9f9f9;
  font-size: 16px;
  color: #333;
  padding: 6px 0;
}

.input-group input::placeholder {
  color: #999;
  opacity: 1;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #f9f9f9 inset;
  -webkit-text-fill-color: #333;
}

.login-button {
  width: 100%;
  background: #4a90e2;
  border: none;
  padding: 12px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-button:hover {
  background: #357ab8;
}

.login-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}