/* Modal Styles (Shared) */
.success-icon-wrapper,
.error-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper {
    background-color: #d4edda;
}

.error-icon-wrapper {
    background-color: #f8d7da;
}

.success-checkmark {
    animation: scaleIn 0.3s ease-out;
}

.error-icon {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#contactSuccessModal .modal-content,
#contactErrorModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#contactSuccessModal .modal-body,
#contactErrorModal .modal-body {
    padding: 3rem 2rem;
}