#banner-container {
    display: block;
    position: fixed;
    height: 110px;
    width: 100%;
}

#banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 15px;
    right: 15px;
    height: 110px;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: var(--text-color);
    background-color: var(--background-color);
    z-index: 4;
    padding: 0 20px;
}

#banner a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 110px;
    width: 25%;
}

.logo-container {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100px;
    margin: -15px 10px 0 0;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-family: "Times New Roman";
    font-size: 48px;
    font-weight: bold;
    text-shadow: 5px 5px 5px color-mix(in srgb, var(--box-shadow-color) 90%, transparent);
    position: relative;
}

.large-r {
    font-size: 110px;
    font-weight: bold;
    color: var(--text-color);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5))
            drop-shadow(-2px -2px 4px rgba(255,255,255,0.5));
}

.logotext1, .logotext2 {
    position: absolute;
    color: var(--text-color);
    font-size: 35px;
    transform: scaleX(1.5);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5)) 
            drop-shadow(-2px -2px 4px rgba(255,255,255,0.5));
}

.logotext1 {
    left: 105px; 
    top: 24%;
}

.logotext2 {
    left: 105px; 
    top: 50%;
}

.powered-by {
    display: flex;
    font-family: arial;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-color);
    text-align: right;
    margin: 82px 0 0 -85px;
    opacity: 0.7;
    text-shadow: 5px 5px 5px color-mix(in srgb, var(--box-shadow-color) 90%, transparent);
}

#loginimage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;         /* Ensures full viewport width */
    height: 100vh;    /* Prevents vertical overflow */
    overflow: hidden;     /* Hides any accidental spillover */
}

#loginimage img {
	width: 100%;
	height: 100%;
    object-fit: cover;    /* Ensures image fills container nicely */
	display: block;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: "Arial";
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

a {
	color: #444444;
	text-decoration: none;
	outline: none;
}

a img {
	border: none;
}

input {
	width: 120px;
}

.login-wrapper {
  position: relative;
  z-index: 10; /* Higher than banner's z-index */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px; /* Adjust as needed */
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

#loginform {
    display: flex;
    z-index: 10;
    flex-direction: column;
    align-items: center;
	font-family: "Arial";
	font-size: 16px;
	color: #444444;
    background-color: rgba(255, 255, 255, 0.85); /* Optional: adds contrast */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


#loginfield, #passwordfield {
	margin-left: 15px;
	height: 25px;
	width: 200px;
	border: 1px solid #B9BDC1;
	color: #797979;
	-moz-box-shadow: 0 2px 4px #bbb inset;
	-webkit-box-shadow: 0 2px 4px #BBB inset;
	box-shadow: 0 2px 4px #BBB inset;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#loginfield:focus, #passwordfield:focus {
	border: 1px solid #777777;
}

#loginbutton {
	font-size: 16px;
	background: #8B4513;
	color: #FFF;
	border-radius: 15px;
	height: 26px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	padding: 1px 0px 1px 0px;
	margin-left: 10px;
	margin-top: 2px;
	border: solid 1px #CCCCCC;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
}
