/* Extrait automatiquement de mot-de-passe-oublie.php */
body{
            margin:0;
            background:#f5f1ea;
            font-family:Arial, sans-serif;
            display:flex;
            justify-content:center;
            align-items:center;
            min-height:100vh;
        }

        .box{
            width:100%;
            max-width:450px;
            background:white;
            padding:35px;
            border-radius:24px;
            box-shadow:0 8px 24px rgba(0,0,0,.08);
        }

        h1{
            color:#3e2f23;
            margin-top:0;
        }

        p{
            color:#5a4d43;
            line-height:1.5;
        }

        input{
            box-sizing:border-box;
            width:100%;
            padding:15px;
            border:1px solid #ddd;
            border-radius:14px;
            margin-bottom:20px;
            font-size:15px;
        }

        button,
        .btn-retour{
            display:block;
            width:100%;
            box-sizing:border-box;
            padding:15px;
            border:none;
            border-radius:999px;
            background:#3e2f23;
            color:white;
            font-weight:bold;
            cursor:pointer;
            font-size:15px;
            text-align:center;
            text-decoration:none;
            margin-top:12px;
        }

        .btn-retour{
            background:#efe6da;
            color:#3e2f23;
        }

        .error{
            background:#fee2e2;
            color:#991b1b;
            padding:12px;
            border-radius:12px;
            margin-bottom:15px;
        }