﻿.compte-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .compte-container::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 30px;
        width: 120px;
        height: 120px;
        background-image: url('/images/logo.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: 0;
        pointer-events: none;
    }

    .compte-container > * {
        position: relative;
        z-index: 1;
    }
.compte-box {
    background-color: lightgray;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 450px;
    width: 100%;
    opacity: 0.95;
}
