#login-banner-container {
    display: block;
    position: fixed;
    height: 172px;
    width: 100%;
    border-radius: 5px;
}

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

#login-banner a {
    display: flex;
    position: absolute;
    text-decoration: none;
    height: 110px;
    width: 25%;
    top: 265px;
    left: 210px;
}

.logo-container {
    display: flex;
    align-items: center;
    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 {
    top: 30px;
    left: 100px;
}

.logotext2 {
    top: 66px;
    left: 100px;
}

.powered-by {
    display: block;
    position:relative;
    top: 50px;
    left: -60px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: color-mix(in srgb, var(--text-color) 78%, transparent);
}

#loginform {
    position: absolute;
    top: 0px;
    right: 15px;
    color: var(--text-color);
    font-family:'Times New Roman';
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #444444;

}

#loginfield,
#passwordfield {
    border: 1px solid #B9BDC1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
    font-size: 16px;
    height: 34px;
    padding: 0 10px;
    width: 150px;
    box-sizing: border-box;
}

#loginfield:focus,
#passwordfield:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px color-mix(in srgb, #8B4513 25%, transparent), inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

#loginbutton {
    position:fixed;
    height: 40px;
    width: 120px;
    border: 1px solid #7a3d10;
    border-radius: 12px;
    background: linear-gradient(180deg, #a65b22 0%, #8B4513 100%);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 18px rgba(0, 0, 0, 0.18);
}

#loginbutton:hover {
    filter: brightness(1.05);
}

#loginbutton:active {
    transform: translateY(1px);
}

#loginbutton:focus {
    border: 1px solid #5a2a08;
    background: linear-gradient(180deg, #7a3f16 0%, #5a2a08 100%);
}

#loginimage {
    
    inset: 0;
    width: 100%;
    height: 100%;
}

#loginimage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    text-align: center;
    overflow-x: hidden;
}

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

a img {
    border: none;
}

input {
    width: auto;
}