/* Authentication pages background styles */
/* Provides full-height layout for authentication pages with background images */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  color: white;
  min-height: 100vh;
}

/* Fixed background layer with semi-transparent overlay for readability */
body::before {
  content: "";
  background-size: cover;
  background-position: center;
  opacity: 0.2; /* Semi-transparent overlay for text contrast */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* Login page background */
body.login-page::before {
  background-image: url('../images/portfolio/properties/118N8-Ext-1.jpg');
}

/* Logout page background */
body.logout-page::before {
  background-image: url('../images/portfolio/properties/118N8-R5-2.jpg');
}

/* Idle logout page background */
body.idle-logout-page::before {
  background-image: url('../images/portfolio/properties/118N8-FH-3.jpg');
}