/**
 * 登入頁面樣式
 */

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.login-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--dark-color);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.login-title span {
  display: block;
}

.login-title #loginShopName {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}

.login-title #loginSystemName {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 4px;
  line-height: 1;
}

/* 確保表單元素正確對齊 */
.login-card form {
  width: 100%;
}

.login-card .form-label {
  display: block;
  text-align: left;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.login-card .form-control {
  width: 100%;
  display: block;
}

.login-card .form-check {
  text-align: left;
}

.login-card .btn {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
  }
  
  .login-title {
    font-size: 20px;
  }
}
