/* Matrix-themed CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #000;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
}

.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

canvas {
    display: block;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    z-index: 10;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ff00;
    letter-spacing: 2px;
    font-size: 2.5rem;
}

h2 {
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff00;
}

.login-box {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #00ff00;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    background-color: #000;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-size: 16px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #00ff00;
    border: 1px solid #00ff00;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.error {
    color: #ff0000;
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.matrix-quote {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    opacity: 0.8;
}

.welcome-message {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.highlight {
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
    font-weight: bold;
}

.coordinates {
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

/* Animation effects */
@keyframes glow {
    0% { text-shadow: 0 0 5px #00ff00; }
    50% { text-shadow: 0 0 20px #00ff00; }
    100% { text-shadow: 0 0 5px #00ff00; }
}

h1, h2 {
    animation: glow 2s infinite;
}

.image-container {
    width: 100%;
    height: 800px; /* or whatever height you want */
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or "contain" depending on desired scaling behavior */
    display: block;
}