/* WiCyS Member Portal login page — recreation
   Brand purple: #812A90 | Font: Lato | Background: single scene image */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}

/* Full-screen scene: gradient + text + shield + photo baked into one image */
.login-body {
  min-height: 100vh;
  width: 100%;
  background-color: #812a90; /* fallback while image loads */
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Translucent lavender card that overlays the scene */
.center-panel {
  width: 328px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 12px;
}

/* Logo */
.community-logo {
  text-align: center;
  padding: 5px 0 12px;
}

.community-logo img {
  width: 152px;
  height: auto;
  display: inline-block;
}

/* Form */
.login-form {
  display: block;
}

/* White pill holding an icon + text field */
.input-container {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  height: 51px;
  padding: 0 12px;
  margin-bottom: 10px;
}

.input-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  margin-right: 10px;
  flex-shrink: 0;
}

.input-box {
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #696969;
}

.input-box::placeholder {
  color: #696969;
  opacity: 1;
}

/* Primary purple buttons (Log in + Become a Member) */
.login-button,
.purple-button {
  display: block;
  width: 100%;
  background-color: #812a90;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.login-button {
  margin-top: 15px;
}

.login-button:hover,
.purple-button:hover {
  background-color: #6f2379;
}

/* White links on the panel */
.inverse-link {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.inverse-link:hover {
  text-decoration: underline;
}

.link-row {
  text-align: center;
  padding: 17px 0;
}

.support-text {
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  padding: 26px 6px 0;
}

.employee-row {
  text-align: center;
  padding: 26px 0 8px;
}
