@charset "UTF-8";

.layout {
  font-size: 1.2em;
}

.gift-item-row {
  display: flex;
  flex-wrap: nowrap;
  background-color: lightgray;
  /* padding: 2px; */
  text-align: center;
}


.gift-item-row:hover {
  background-color: rgb(253, 251, 122);
}

.gift-item {
  border-style: solid;
  border-width: 1px;
  margin: 3px;
  justify-content: center;
}

.gift-item-title {
  border-style: solid;
  border-width: 2px;
  margin: 3px;
  background-color: rgb(164, 186, 226);
}


.flex-30p {
  flex: 0 0 28%;
}

.flex-50p {
  flex: 0 0 49%;
}

.flex-60p {
  flex: 0 0 59%;
}

.flex-20p {
  flex: 0 0 19%;
}

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

.login-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.login-title {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.login-form div {
  margin-bottom: 20px;
  text-align: left;
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.login-form .ivu-input-wrapper {
  width: 100%;
}

.error-message {
  color: #ed4014;
  font-size: 0.9em;
  margin-top: 10px;
  text-align: center;
}

.login-button {
  width: 100%;
  height: 48px;
  font-size: 1.1em;
  margin-top: 20px;
}