/*=- /Content/Layouts/Clean/stylesheets/section-member-login.css -=*/







.login-flyout {
  display: none;
  position: fixed;
  right: 130px;
  top: 42px;
  overflow-y: auto;
  z-index: 999999;
}
.flyout-box {
  width: 360px;
  background: white;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  position: relative;
}
.flyout-box h3 {
  margin-bottom: 15px;
}
.flyout-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #cccccc;
}
.flyout-btn {
  width: 100%;
  padding: 12px;
  background: #002058;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.flyout-links {
  margin-top: 10px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  color: #0c1f57;
  text-decoration: underline;
  text-decoration-color: #0066cc;
  text-underline-offset: 3px;
  font-weight: 500;
}
.flyout-close {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
}
.page-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 99998;
}
body.flyout-open {
  overflow: hidden;
}
.flyout-checkboxes {
  display: flex;
  gap: 70px;
  margin: 10px 0;
}
.flyout-checkboxes label {
  font-size: 14px;
  cursor: pointer;
  display: flex;
  gap: 5px;
  white-space: nowrap;
}
.member-panel {
  background-color: black !important;
  display: none;
  position: fixed;
  top: 60px;
  right: 120px;
  width: 390px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  z-index: 99999;
  padding: 25px;
  font-family: "Segoe UI", sans-serif;
  overflow-y: auto;
}
.member-panel.active {
  display: block;
}
/* Close */

.member-close {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #777777;
}
.member-close:hover {
  color: black;
}
/* Header */

.member-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.member-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eef1f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 22px;
  color: #1c2b4f;
  margin-right: 15px;
}
.member-title h3 {
  margin: 0;
  font-size: 22px;
  color: #1c2b4f;
  font-weight: 600;
}
.member-since {
  margin: 5px 4px 0;
  font-size: 13px;
  color: #888888;
}
/* Info Grid */

.member-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 25px;
  margin-bottom: 25px;
}
.info-item .label {
  font-size: 16px;
  color: #888888;
  margin: 0;
  font-weight: 400;
}
.info-item .value {
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0 0;
  color: #1c2b4f;
}
/* Dashboard Button */

.dashboard-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 40px;
  background: #1c2b4f;
  font-size: 17px;
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}
.dashboard-btn:hover {
  opacity: 0.9;
}
/* Logout Button */

.logout-btn {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 40px;
  border: 2px solid #d6d6d6;
  background: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
  color: #1c2b4f;
  font-size: 16px;
}
.logout-btn:hover {
  background: whitesmoke;
}
.forgot-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.forgot-box {
  background: white;
  width: 350px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}
.forgot-box input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid black;
  border-radius: 3px;
}
.forgot-btn {
  width: 100%;
  padding: 10px;
  background: #0a4fa3;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}
.forgot-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}
.forgot-message {
  margin-top: 10px;
  font-size: 14px;
}
.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.flyout-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
/* ================= DESKTOP DEFAULT ================= */

.login-flyout,
.forgot-modal,
.member-panel {
  padding: 20px;
}
/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .flyout-box,
  .forgot-box,
  .member-panel-box {
    width: 380px;
    padding: 25px;
  }
  .member-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
/* ================= MOBILE LARGE ================= */

@media (max-width: 768px) {
  .flyout-box,
  .forgot-box,
  .member-panel-box {
    width: 92%;
    padding: 22px;
  }
  .flyout-box h3,
  .forgot-box h3 {
    font-size: 20px;
    text-align: center;
  }
  .member-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .member-avatar {
    margin-bottom: 5px;
  }
  .member-info-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-btn,
  .logout-btn,
  .flyout-btn,
  .forgot-btn {
    width: 100%;
  }
}
/* ================= MOBILE SMALL ================= */

@media (max-width: 480px) {
  .flyout-box,
  .forgot-box,
  .member-panel-box {
    width: 95%;
    padding: 18px;
  }
  input {
    font-size: 14px;
    padding: 10px;
  }
  .flyout-checkboxes {
    flex-direction: column;
    gap: 6px;
  }
  .flyout-links {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .member-info-grid {
    gap: 10px;
  }
}
/*  FROM HOME.LESS */

.site-id {
  flex: 0 0 auto;
}
.design-header .site-id img {
  width: 158px !important;
  height: 35px !important;
}
#SiteMenu {
  flex: 1 1 auto;
  margin-left: 0 !important;
  /* kills inline 283px */
  display: flex;
  justify-content: center;
}
#SiteMenu .site-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#SiteMenu .site-menu a {
  text-decoration: none;
  color: black;
  font-weight: 400;
  font-size: 18px;
}
#SiteLinks {
  flex: 0 0 auto;
}
.section-site-menu {
  justify-self: center !important;
}
#SiteLinks .site-links {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#SiteLinks .site-links a {
  text-decoration: none;
  color: black !important;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}
#SiteLinks .site-links li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #0a2a66;
}
