#page-success {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.success-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 150px;
    height: 150px;
    background-color: #A6C429;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: popIn 0.5s ease forwards;
}

.checkmark {
    width: 70px;
    height: 35px;
    border: solid white;
    border-width: 0 0 8px 8px;
    transform: rotate(-45deg);
}

/* Animation du cercle */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
