/* ===== LOGIN PAGE ===== */

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.login-container {
  background-color: #2d2d32;
  padding: 40px;
  border-radius: 12px;
  width: 380px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.login-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.portal-title {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 22px;
}

.input-label {
  color: #b0b0b0;
  font-size: 15px;
  margin-bottom: 8px;
  display: block;
}

.input-field-container {
  display: flex;
  align-items: center;
  background-color: #3a3a40;
  border: 1px solid #505056;
  border-radius: 8px;
  padding: 12px;
}

.input-field-container:focus-within {
  border-color: #00a8ff;
}

.input-field {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  flex: 1;
  outline: none;
}

.input-field::placeholder {
  color: #808086;
}

.eye-icon {
  cursor: pointer;
}

.access-button {
  background: linear-gradient(135deg, #00a8ff, #0077cc);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 17px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.input-field-container {
  height: 56px;              /* FIXED height */
  display: flex;
  align-items: center;       /* vertical centering */
  gap: 12px;
}
.input-field-container svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.7;
}
.access-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0,168,255,0.4);
}
/* Fix SVG icon color inside inputs */
.input-field-container svg {
  color: #808086;   /* muted gray like before */
}
/* Fix header icon */
.login-header .material-symbols-outlined {
  color: #0096e6;
}
/* Ensure all text inside login card is light */
.login-container {
  color: #ffffff;
}