/* Police style "terminal futuriste" */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

/* Couleurs principales */
:root {
    --bg-dark: #000000;
    --bg-panel: rgba(0, 20, 0, 0.55);
    --green-neon: #00ff88;
    --green-light: #66ffcc;
}

/* Fond global */
body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark) url('/space_bg.jpg') center/cover no-repeat fixed;
    font-family: 'Share Tech Mono', monospace;
    color: var(--green-light);
    text-shadow: 0 0 6px var(--green-neon);
}

/* Conteneur principal */
.main-container {
    margin: 50px auto;
    width: 95%;
    max-width: 900px;
}

/* TITRES */
h1, h2, h3 {
    color: var(--green-light);
    text-shadow:
        0 0 6px var(--green-neon),
        0 0 12px var(--green-neon);
    text-align: center;
    letter-spacing: 1px;
}

/* Login box */
.login-box {
    margin: auto;
    margin-top: 40px;
    padding: 30px;
    width: 350px;
    background: var(--bg-panel);
    border: 1px solid var(--green-neon);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 255, 120, 0.4);
}

/* Inputs */
input, select {
    width: 90%;
    padding: 10px;
    margin: 8px 0 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--green-neon);
    color: var(--green-light);
    border-radius: 6px;
    outline: none;
    text-shadow: 0 0 4px var(--green-neon);
}

input:focus {
    box-shadow: 0 0 12px var(--green-neon);
}

/* Boutons */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: var(--green-neon);
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 120, 0.4);
    transition: 0.15s;
}

button:hover {
    background: var(--green-light);
    box-shadow: 0 0 20px rgba(0, 255, 120, 0.7);
}

/* Liste des fichiers */
.file-item, .file {
    background: rgba(0, 20, 0, 0.45);
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--green-neon);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    transition: background 0.2s, transform 0.1s;
}

.file-item:hover, .file:hover {
    background: rgba(0, 40, 0, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 120, 0.5);
    transform: scale(1.01);
}

/* Liens */
a {
    color: var(--green-light);
    text-shadow: 0 0 5px var(--green-neon);
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--green-neon);
}
