/* Corner crop mark */
.corner-mark {
    position: absolute;
    top: 40px;
    left: 70px;
    width: 30px;
    height: 30px;
}

.corner-mark::before,
.corner-mark::after {
    content: "";
    position: absolute;
    background-color:#0f172a;
}

/* Vertical line */
.corner-mark::before {
    width: 2px;
    height: 30px;
    left: 0;
    top: 0;
}

/* Horizontal line */
.corner-mark::after {
    width: 30px;
    height: 2px;
    left: 0;
    top: 0;
}

.home-title {
    position: absolute;
    left: 145px;
    top: 25px;
    color: #0f172a;
    font-family: 'Trebuchet MS';
    min-width: 500px;
}



.home-logo {
    position:absolute;
    left: 90px;
    top: 130px;
}

.home-essentials {
    position:absolute;
    left: 145px;
    top: 140px;
}

.home-nav {
    position:absolute;
    left: 145px;
    top: 670px;
    min-width: 800px;
    font-family: 'Trebuchet MS';
    font-size: 14px;
}

.home-nav a {
    text-decoration: none;
    color:#0f172a;
}

.home-nav a:hover {

    color:#32d367;
    text-decoration: none;
}

footer {
    position: absolute;
    left: 145px;
    top: 500px;
    color:#0f172a;
    font-family: 'Trebuchet MS';
    min-width: 800px;
}



/* TOP‑RIGHT LOGIN STATUS BAR */
.login-status {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    font-size: 14px;
    font-family: 'Trebuchet MS';
    text-shadow: 2px 2px 5px rgb(226, 226, 226);
    color: #333;
    z-index: 9999;
}

/* Consistent button styling */
/* Gothic-style login/logout buttons */
.login-status button {
    width: 120px;
    padding: 8px 16px;
    background: #1a1a1a; /* deep gothic black */
    border: 2px solid #3a3a3a; /* metallic charcoal */
    border-radius: 4px; /* sharper, gothic edges */
    color: #e6e6e6; /* pale silver text */
    font-size: 14px;
    font-weight: 600;
    font-family: 'Trebuchet MS';
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.45), inset 0 0 6px rgba(255,255,255,0.05);
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.login-status button:hover {
    background: #2b2b2b; /* lifted charcoal */
    border-color: #6b0f14; /* gothic crimson accent */
    box-shadow: 0 4px 10px rgba(0,0,0,0.6), 0 0 6px #00ff62;
    transform: translateY(-2px); 
    
}


/* Input fields inside the status bar */
.login-status input[type="text"],
.login-status input[type="password"] {
    width: 160px;
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 6px;
    border: 1px solid #aaa;
    background: #fff;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-status input[type="text"]:focus,
.login-status input[type="password"]:focus {
    border-color: #4da3ff;
    box-shadow: 0 0 4px rgba(77,163,255,0.5);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

/* Labels */
.login-status label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}
