/* Styles globaux appliqués à tout le site */
body { 
    font-family: 'Courier New', Courier, monospace; 
    margin: 0;
    padding: 40px 20px;
    background: #ffffff; 
    color: #111111; 
    font-size: 16px;
}

/* Styles des formulaires partagés */
.input-group { margin-bottom: 20px; }

label { 
    display: block; 
    margin-bottom: 8px; 
    color: #a0a0a0; 
}

input[type="text"], input[type="password"], select { 
    width: 100%; 
    padding: 6px 0; 
    border: none;
    border-bottom: 1px solid #e0e0e0; 
    background: transparent; 
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
    outline: none;
}

input[type="text"]:focus, input[type="password"]:focus, select:focus {
    border-bottom: 2px solid #111;
}

button { 
    background: transparent; 
    border: 1px solid #111; 
    padding: 8px 16px;
    font-family: inherit;
    cursor: pointer; 
    font-size: 0.9em;
    margin-top: 10px;
}

button:hover { 
    background: #111; 
    color: #fff; 
}

.message { color: #ff6b6b; margin-bottom: 20px; }

.link { 
    margin-top: 30px; 
    font-size: 0.9em;
    border-top: 1px dashed #444;
    padding-top: 15px;
}