/* /home/mareth/public_html/css/style.css */
/* General body styling */
body {
    position: relative;
    background-color: black; /* fallback */
    height: 100%;
    margin: 0;      /* remove default margins */
    padding: 0;     /* remove default padding */
    overflow: hidden; /* optional, only if you want to prevent scrolling */
}
body::before {
    content: "";
    position: fixed;           /* fixes the background to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;             /* full viewport height */
    background: url('../img/Argus.png') no-repeat center center / cover;
    filter: invert(1);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background-color: #2e8b57;
    mix-blend-mode: multiply;
    z-index: -1;
}
body.local-black::before,
body.local-black::after {
    display: none; /* hides pseudo-elements */
}

body.local-black {
    background-color: black !important;
}


.container {
    max-width: 600px;   /* constrain width for large screens */
    margin: 0 auto;   /* center horizontally */
  	padding: 0;
}


.box {
    background: rgba(0.5,0.5,0.5,0.7);
    padding: 20px;
    border-radius: 12px;
    margin-top: 50px; 
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 16px rgba(0.5,0.5,0.5,0.5);
    text-align: center;
}


/* Headings */
h1 {
    text-align: center;
    margin-bottom: 24px;
  	color: #81007f;
}

/* Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0 16px 0;
    border: none;
    border-radius: 2px;
      box-sizing: border-box;

}

/* Buttons */
button {
    width: 100%;
    padding: 10px;
    background: #363737;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
      box-sizing: border-box;
}

button:hover {
    background: #019875;
}




/* Error messages */
.error {
    background: #e74c3c;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: center;
}