.cgu-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.cgu-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.cgu-checkbox:hover {
    border-color: #EB5835;
}

.cgu-checkbox:checked {
    background-color: #EB5835;
    border-color: #EB5835;
}

.cgu-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cgu-label {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    cursor: pointer;
    margin: 0;
}

.cgu-checkbox.is-invalid {
    border-color: #ff5757;
}

.cgu-checkbox.is-invalid:checked {
    background-color: #ff5757;
    border-color: #ff5757;
}

.btn-primary[type="submit"] {
    width: 100%;
}

.country-notice {
    color: #ccc;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.cgu-link {
    text-decoration: underline;
    color: #EB5835;
}

.cgu-error {
    display: block;
}

/* Styles SweetAlert2 pour thème sombre */
.swal2-popup.swal-dark-theme {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.swal2-title.swal-dark-title {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.swal2-html-container.swal-dark-content {
    color: #d1d5db !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #EB5835 0%, #d63919 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    background: linear-gradient(135deg, #d63919 0%, #b8301b 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.swal2-icon.swal2-success {
    border-color: #10b981 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: #10b981 !important;
}

.swal2-icon.swal2-success .swal2-success-fix {
    background-color: #1f2937 !important;
}

.swal2-icon.swal2-error {
    border-color: #ef4444 !important;
}

.swal2-timer-progress-bar {
    background: #EB5835 !important;
}

.swal2-backdrop {
    background: rgba(0, 0, 0, 0.8) !important;
}

.success-message-simple {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: slideUpFade 0.6s ease-out;
}

.success-icon-simple {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounceIn 0.8s ease-out 0.2s both;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.success-message-simple h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.success-message-simple p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.success-message-simple .btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    animation: fadeIn 0.6s ease-out 0.8s both;
    transition: all 0.3s ease;
}

.success-message-simple .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 88, 53, 0.3);
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 576px) {
    .success-message-simple {
        padding: 30px 20px;
    }
    
    .success-icon-simple {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
    
    .success-message-simple h2 {
        font-size: 1.5rem;
    }
    
    .success-message-simple p {
        font-size: 1rem;
    }
    
    .success-message-simple .btn {
        width: 100%;
        min-width: auto;
    }
}
