body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url("/bg.png") no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 48px 32px 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.welcome-img {
  width: 220px;
  margin-bottom: 18px;
  margin-top: 8px;
}

.welcome-text {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.login-btn {
  width: 200px;
  padding: 14px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.login-btn.employee {
  background: #2563eb;
  color: #fff;
}

.login-btn.employee:hover {
  background: #1741a6;
}

.login-btn.admin {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.login-btn.admin:hover {
  background: #e8f0fe;
}
/*# sourceMappingURL=index.css.map */
