/*
Theme Name: Codex Lab
Theme URI: https://codexlab.fr
Author: Christian Lange
Author URI: https://clap-sas.fr
Description: Thème personnalisé pour Codex Lab, développé par Christian Lange (CLAP SAS)
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codexlab
*/

/* Style de base, à compléter selon tes besoins */

body {
    background: #fff;
    margin: 0;
    padding: 0;
}
.codexlab-wrapper {
    width: 1000px;
    min-height: 600px;
    border: 1px solid #000;
    background: #fff;
    margin-left: 0;
    margin-top: 0;
    position: relative;
}
.codexlab-form {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 400px;
    background: transparent;
    padding: 0;
}
.codexlab-form h2 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: #222;
}
.codexlab-form label {
    display: block;
    margin-bottom: 12px;
    color: #111;
}
.codexlab-form input[type="text"],
.codexlab-form input[type="email"],
.codexlab-form input[type="password"] {
    width: 100%;
    padding: 7px 10px;
    border-radius: 6px;
    border: 1px solid #aaa;
    margin-top: 4px;
    font-size: 1em;
    background: #fff;
    box-sizing: border-box;
}
.codexlab-form .btn-primary {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    width: 100%;
    margin-top: 12px;
    font-size: 1.05em;
    cursor: pointer;
    transition: background 0.2s;
}
.codexlab-form .btn-primary:hover {
    background: #555;
}
.codexlab-form .success {
    color: #238d23;
    font-weight: bold;
    margin-top: 10px;
}
.codexlab-form .error {
    color: #d03f3f;
    font-weight: bold;
    margin-top: 10px;
}